projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7f26333
)
[PATCH] m68k: bogus function argument types (sun3_pgtable.h)
author
Al Viro
<viro@ftp.linux.org.uk>
Thu, 12 Jan 2006 09:06:20 +0000
(
01:06
-0800)
committer
Linus Torvalds
<torvalds@g5.osdl.org>
Thu, 12 Jan 2006 17:09:01 +0000
(09:09 -0800)
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>
include/asm-m68k/sun3_pgtable.h
patch
|
blob
|
blame
|
history
diff --git
a/include/asm-m68k/sun3_pgtable.h
b/include/asm-m68k/sun3_pgtable.h
index e974bb072047b2fa9e0072f59da5ba729fb3aed5..5156a28a18d82a722fb9b92879d6c5c413cfeb90 100644
(file)
--- 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;