The patch titled alpha: fix trivial section mismatch warnings has been added to the -mm tree. Its filename is alpha-fix-trivial-section-mismatch-warnings.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: alpha: fix trivial section mismatch warnings From: Sam Ravnborg <sam@xxxxxxxxxxxx> 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@xxxxxxxxxxxx> Cc: Meelis Roos <mroos@xxxxxxxx> Cc: Ivan Kokshaysky <ink@xxxxxxxxxxxxxxxxxxxx> Cc: Richard Henderson <rth@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/alpha/kernel/srmcons.c | 2 +- arch/alpha/kernel/sys_marvel.c | 2 +- arch/alpha/kernel/time.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff -puN arch/alpha/kernel/srmcons.c~alpha-fix-trivial-section-mismatch-warnings arch/alpha/kernel/srmcons.c --- a/arch/alpha/kernel/srmcons.c~alpha-fix-trivial-section-mismatch-warnings +++ a/arch/alpha/kernel/srmcons.c @@ -289,7 +289,7 @@ srm_console_device(struct console *co, i return srmcons_driver; } -static int __init +static int srm_console_setup(struct console *co, char *options) { return 0; diff -puN arch/alpha/kernel/sys_marvel.c~alpha-fix-trivial-section-mismatch-warnings arch/alpha/kernel/sys_marvel.c --- a/arch/alpha/kernel/sys_marvel.c~alpha-fix-trivial-section-mismatch-warnings +++ a/arch/alpha/kernel/sys_marvel.c @@ -420,7 +420,7 @@ marvel_init_pci(void) io7_clear_errors(io7); } -static void +static void __init marvel_init_rtc(void) { init_rtc_irq(); diff -puN arch/alpha/kernel/time.c~alpha-fix-trivial-section-mismatch-warnings arch/alpha/kernel/time.c --- a/arch/alpha/kernel/time.c~alpha-fix-trivial-section-mismatch-warnings +++ a/arch/alpha/kernel/time.c @@ -144,7 +144,7 @@ irqreturn_t timer_interrupt(int irq, voi return IRQ_HANDLED; } -void +void __init common_init_rtc(void) { unsigned char x; _ Patches currently in -mm which might be from sam@xxxxxxxxxxxx are git-kbuild.patch use-posix-bre-in-headers-install-target.patch fix-x86_64-mm-xen-core-xen-implementation.patch x86-fix-section-mismatch-warnings-in-mtrr.patch i386-fix-section-mismatch-warning-in-intel_cacheinfo.patch git-newsetup.patch alpha-fix-trivial-section-mismatch-warnings.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html