The patch titled voyager: #include <asm/smp.h> to fix compile error has been added to the -mm tree. Its filename is voyager-include-asm-smph-to-fix-compile-error.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: voyager: #include <asm/smp.h> to fix compile error From: Tobias Klauser <tklauser@xxxxxxxxxx> Include smp.h to fix the following error when compiling with CONFIG_X86_VOYAGER=y and CONFIG_SMP not set (found using 'make randconfig'). arch/i386/mach-voyager/setup.c: In function 'time_init_hook': arch/i386/mach-voyager/setup.c:52: error: implicit declaration of function 'safe_smp_processor_id' Signed-off-by: Tobias Klauser <tklauser@xxxxxxxxxx> Cc: James Bottomley <James.Bottomley@xxxxxxxxxxxx> Cc: Andi Kleen <ak@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/i386/mach-voyager/setup.c | 1 + 1 file changed, 1 insertion(+) diff -puN arch/i386/mach-voyager/setup.c~voyager-include-asm-smph-to-fix-compile-error arch/i386/mach-voyager/setup.c --- a/arch/i386/mach-voyager/setup.c~voyager-include-asm-smph-to-fix-compile-error +++ a/arch/i386/mach-voyager/setup.c @@ -9,6 +9,7 @@ #include <asm/e820.h> #include <asm/io.h> #include <asm/setup.h> +#include <asm/smp.h> void __init pre_intr_init_hook(void) { _ Patches currently in -mm which might be from tklauser@xxxxxxxxxx are voyager-include-asm-smph-to-fix-compile-error.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