From: Paul Gortmaker Date: Thu, 26 May 2011 16:33:18 +0000 (-0400) Subject: x86: fix implicit include of in vsyscall_64 X-Git-Tag: next-20110729~14^2~141 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=790b1d3579c346c9414c3405ff06ebf28fc9cccc;p=karo-tx-linux.git x86: fix implicit include of in vsyscall_64 In removing the presence of from some of the more common files, this implict include of was uncovered. CC arch/x86/kernel/vsyscall_64.o arch/x86/kernel/vsyscall_64.c: In function ‘vsyscall_set_cpu’: arch/x86/kernel/vsyscall_64.c:259: error: implicit declaration of function ‘cpu_to_node’ Explicitly call it out so the cleanup can take place. Signed-off-by: Paul Gortmaker --- diff --git a/arch/x86/kernel/vsyscall_64.c b/arch/x86/kernel/vsyscall_64.c index dda7dff9cef7..f0b976e80c38 100644 --- a/arch/x86/kernel/vsyscall_64.c +++ b/arch/x86/kernel/vsyscall_64.c @@ -28,6 +28,7 @@ #include #include #include +#include #include #include #include