From: Ingo Molnar Date: Wed, 21 Jan 2009 09:24:27 +0000 (+0100) Subject: x86: uv cleanup, build fix X-Git-Tag: v2.6.30-rc1~2^2~50^2~61 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=4ec71fa2d2c3f1040348f2604f4b8ccc833d1c2e;p=karo-tx-linux.git x86: uv cleanup, build fix Fix: arch/x86/mm/srat_64.c: In function ‘acpi_numa_processor_affinity_init’: arch/x86/mm/srat_64.c:141: error: implicit declaration of function ‘get_uv_system_type’ arch/x86/mm/srat_64.c:141: error: ‘UV_X2APIC’ undeclared (first use in this function) arch/x86/mm/srat_64.c:141: error: (Each undeclared identifier is reported only once arch/x86/mm/srat_64.c:141: error: for each function it appears in.) A couple of UV definitions were moved to asm/uv/uv.h, but srat_64.c did not include that header. Add it. Signed-off-by: Ingo Molnar --- diff --git a/arch/x86/mm/srat_64.c b/arch/x86/mm/srat_64.c index 09737c8af074..15df1baee100 100644 --- a/arch/x86/mm/srat_64.c +++ b/arch/x86/mm/srat_64.c @@ -21,6 +21,7 @@ #include #include #include +#include int acpi_numa __initdata;