diff options
author | Paul Mundt <lethal@linux-sh.org> | 2009-08-04 15:59:15 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2009-08-04 15:59:15 +0900 |
commit | 222db3e5f21fca563f5f692e000afcc01cb4395c (patch) | |
tree | 1dd564392771acc9f7146c6db55af517283bf427 /arch | |
parent | 700487c158163f14e6ff10de770b565c1c993c69 (diff) |
sh: Bring kmap_coherent() out-of-line.
kmap_coherent() has gotten too big to leave as an inline, so we
bring it out-of-line.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/sh/mm/pg-mmu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/mm/pg-mmu.c b/arch/sh/mm/pg-mmu.c index 32351206edd..e5c5122f4d6 100644 --- a/arch/sh/mm/pg-mmu.c +++ b/arch/sh/mm/pg-mmu.c @@ -31,7 +31,7 @@ void __init kmap_coherent_init(void) #endif } -static inline void *kmap_coherent(struct page *page, unsigned long addr) +static void *kmap_coherent(struct page *page, unsigned long addr) { enum fixed_addresses idx; unsigned long vaddr, flags; |