diff options
author | Sam Ravnborg <sam@ravnborg.org> | 2007-07-16 02:38:37 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-16 12:05:37 -0400 |
commit | ebaf4fc13e293dcafbb13c91aae2a45722652740 (patch) | |
tree | f90cc463b80b7cdb4b14b65d95375b573f48a188 /arch/alpha/kernel/sys_marvel.c | |
parent | 2fea299f74c846157b068be8ae15b406db0719d9 (diff) |
alpha: fix trivial section mismatch warnings
Fix the following section mismatch warnings:
WARNING: arch/alpha/kernel/built-in.o(.text+0x7c78): Section mismatch: reference to .init.text:init_rtc_irq (between 'common_init_rtc' and 'timer_interrupt')
WARNING: arch/alpha/kernel/built-in.o(.text+0x7c7c): Section mismatch: reference to .init.text:init_rtc_irq (between 'common_init_rtc' and 'timer_interrupt')
WARNING: arch/alpha/kernel/built-in.o(.data+0x2c30): Section mismatch: reference to .init.text:srm_console_setup (between 'srmcons' and 'tsunami_pci_ops')
In all three cases functions marked __init was called outside __init context.
So the fix was to just drop the __init attribute.
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Cc: Meelis Roos <mroos@linux.ee>
Cc: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Cc: Richard Henderson <rth@twiddle.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/alpha/kernel/sys_marvel.c')
-rw-r--r-- | arch/alpha/kernel/sys_marvel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/alpha/kernel/sys_marvel.c b/arch/alpha/kernel/sys_marvel.c index 0bcb968cb60a..922143ea1cdb 100644 --- a/arch/alpha/kernel/sys_marvel.c +++ b/arch/alpha/kernel/sys_marvel.c | |||
@@ -420,7 +420,7 @@ marvel_init_pci(void) | |||
420 | io7_clear_errors(io7); | 420 | io7_clear_errors(io7); |
421 | } | 421 | } |
422 | 422 | ||
423 | static void | 423 | static void __init |
424 | marvel_init_rtc(void) | 424 | marvel_init_rtc(void) |
425 | { | 425 | { |
426 | init_rtc_irq(); | 426 | init_rtc_irq(); |