diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2006-01-12 01:06:20 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-12 09:09:01 -0800 |
commit | 0efb71348249903c54e71f26927cfc94ba186dfb (patch) | |
tree | 041c42c3f5ab97486bcf4722109a434d542552a8 | |
parent | 7f2633388d64c0489516af04e0d4cd9f01397a94 (diff) | |
download | linux-3.10-0efb71348249903c54e71f26927cfc94ba186dfb.tar.gz linux-3.10-0efb71348249903c54e71f26927cfc94ba186dfb.tar.bz2 linux-3.10-0efb71348249903c54e71f26927cfc94ba186dfb.zip |
[PATCH] m68k: bogus function argument types (sun3_pgtable.h)
function arguments can't be inline, TYVM...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Cc: Roman Zippel <zippel@linux-m68k.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r-- | include/asm-m68k/sun3_pgtable.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-m68k/sun3_pgtable.h b/include/asm-m68k/sun3_pgtable.h index e974bb07204..5156a28a18d 100644 --- a/include/asm-m68k/sun3_pgtable.h +++ b/include/asm-m68k/sun3_pgtable.h @@ -211,7 +211,7 @@ static inline unsigned long pte_to_pgoff(pte_t pte) return pte.pte & SUN3_PAGE_PGNUM_MASK; } -static inline pte_t pgoff_to_pte(inline unsigned off) +static inline pte_t pgoff_to_pte(unsigned off) { pte_t pte = { off + SUN3_PAGE_ACCESSED }; return pte; |