diff options
author | Adrian Bunk <bunk@stusta.de> | 2005-11-07 00:58:44 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-11-07 07:53:30 -0800 |
commit | d9b5444eeb3a663ca4a625878b1421c9e9b18e8b (patch) | |
tree | 6cc32711116977944043c54e0c196c75358916be /arch/cris/mm | |
parent | 5f9c3cbcd5d41be597aef9c0ff64ebfc8a91cd6f (diff) | |
download | op-kernel-dev-d9b5444eeb3a663ca4a625878b1421c9e9b18e8b.zip op-kernel-dev-d9b5444eeb3a663ca4a625878b1421c9e9b18e8b.tar.gz |
[PATCH] cris: "extern inline" -> "static inline"
"extern inline" doesn't make much sense.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Acked-by: Mikael Starvik <starvik@axis.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/cris/mm')
-rw-r--r-- | arch/cris/mm/ioremap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/cris/mm/ioremap.c b/arch/cris/mm/ioremap.c index a92ac98..1780df3 100644 --- a/arch/cris/mm/ioremap.c +++ b/arch/cris/mm/ioremap.c @@ -16,7 +16,7 @@ #include <asm/tlbflush.h> #include <asm/arch/memmap.h> -extern inline void remap_area_pte(pte_t * pte, unsigned long address, unsigned long size, +static inline void remap_area_pte(pte_t * pte, unsigned long address, unsigned long size, unsigned long phys_addr, pgprot_t prot) { unsigned long end; |