diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2007-07-10 11:10:56 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-07-10 12:33:05 -0400 |
commit | 62b396358e837549f20068ed9c3d2bcf99d9ad2d (patch) | |
tree | 74147528c7924fd4800a73f64745903fce01811e /arch/mips/mm | |
parent | f2c4b47f26c9d3ba32fb51e574d8cacce30f744d (diff) |
[MIPS] SB1: Fix modpost warning.
MODPOST vmlinux
WARNING: arch/mips/mm/built-in.o(.text+0x1978): Section mismatch: reference to .init.text:except_vec2_sb1 (between 'sb1_cache_init' and 'sb1_flush_cache_sigtramp')
WARNING: arch/mips/mm/built-in.o(.text+0x1988): Section mismatch: reference to .init.text:except_vec2_sb1 (between 'sb1_cache_init' and 'sb1_flush_cache_sigtramp')
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/mm')
-rw-r--r-- | arch/mips/mm/c-sb1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/mm/c-sb1.c b/arch/mips/mm/c-sb1.c index 9ea460b16bda..6f9bd7fbd481 100644 --- a/arch/mips/mm/c-sb1.c +++ b/arch/mips/mm/c-sb1.c | |||
@@ -476,7 +476,7 @@ static __init void probe_cache_sizes(void) | |||
476 | * memory management function pointers, as well as initialize | 476 | * memory management function pointers, as well as initialize |
477 | * the caches and tlbs | 477 | * the caches and tlbs |
478 | */ | 478 | */ |
479 | void sb1_cache_init(void) | 479 | void __init sb1_cache_init(void) |
480 | { | 480 | { |
481 | extern char except_vec2_sb1; | 481 | extern char except_vec2_sb1; |
482 | 482 | ||