The patch titled i386: mark tsc_init() as __init has been added to the -mm tree. Its filename is i386-mark-tsc_init-as-__init.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: i386: mark tsc_init() as __init From: Magnus Damm <magnus@xxxxxxxxxxxxx> i386: mark tsc_init() as __init tsc_init() is only called from setup_arch() which is marked as __init. Signed-off-by: Magnus Damm <magnus@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/i386/kernel/tsc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN arch/i386/kernel/tsc.c~i386-mark-tsc_init-as-__init arch/i386/kernel/tsc.c --- a/arch/i386/kernel/tsc.c~i386-mark-tsc_init-as-__init +++ a/arch/i386/kernel/tsc.c @@ -192,7 +192,7 @@ int recalibrate_cpu_khz(void) EXPORT_SYMBOL(recalibrate_cpu_khz); -void tsc_init(void) +void __init tsc_init(void) { if (!cpu_has_tsc || tsc_disable) return; _ Patches currently in -mm which might be from magnus@xxxxxxxxxxxxx are i386-clean-up-topologyc.patch i386-mark-tsc_init-as-__init.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