Commit 24fc6f00b64985773b5abd592c4cb2e30bad7584

Authored by Tom "spot" Callaway
Committed by David S. Miller
1 parent 5c7aa6ffae

[SPARC64]: Fix inline directive in pci_iommu.c

While building a test kernel for the new esp driver (against
git-current), I hit this bug. Trivial fix, put the inline declaration
in the right place. :)

Signed-off-by: Tom "spot" Callaway <tcallawa@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

arch/sparc64/kernel/pci_iommu.c
... ... @@ -64,7 +64,7 @@
64 64 #define IOPTE_IS_DUMMY(iommu, iopte) \
65 65 ((iopte_val(*iopte) & IOPTE_PAGE) == (iommu)->dummy_page_pa)
66 66  
67   -static void inline iopte_make_dummy(struct pci_iommu *iommu, iopte_t *iopte)
  67 +static inline void iopte_make_dummy(struct pci_iommu *iommu, iopte_t *iopte)
68 68 {
69 69 unsigned long val = iopte_val(*iopte);
70 70