aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2009-02-11 05:27:39 -0500
committerIngo Molnar <mingo@elte.hu>2009-02-11 05:27:39 -0500
commit160d8dac12932ad6eb4a359b66521e2e3282ea7d (patch)
tree57aa576736c95c297fd340c169f614496e42cfad
parentd5b5a232b2f2b6e64762308e90d47248dddfd72f (diff)
x86, apic: make generic_apic_probe() generally available
Impact: build fix Signed-off-by: Ingo Molnar <mingo@elte.hu>
-rw-r--r--arch/x86/include/asm/apic.h6
-rw-r--r--arch/x86/kernel/setup.c2
2 files changed, 6 insertions, 2 deletions
diff --git a/arch/x86/include/asm/apic.h b/arch/x86/include/asm/apic.h
index f4835a1be36..fba49f66228 100644
--- a/arch/x86/include/asm/apic.h
+++ b/arch/x86/include/asm/apic.h
@@ -33,7 +33,13 @@
33 } while (0) 33 } while (0)
34 34
35 35
36#if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86_32)
36extern void generic_apic_probe(void); 37extern void generic_apic_probe(void);
38#else
39static inline void generic_apic_probe(void)
40{
41}
42#endif
37 43
38#ifdef CONFIG_X86_LOCAL_APIC 44#ifdef CONFIG_X86_LOCAL_APIC
39 45
diff --git a/arch/x86/kernel/setup.c b/arch/x86/kernel/setup.c
index 150e6d0a3b4..8fce6c71451 100644
--- a/arch/x86/kernel/setup.c
+++ b/arch/x86/kernel/setup.c
@@ -936,9 +936,7 @@ void __init setup_arch(char **cmdline_p)
936 map_vsyscall(); 936 map_vsyscall();
937#endif 937#endif
938 938
939#ifdef CONFIG_X86_32
940 generic_apic_probe(); 939 generic_apic_probe();
941#endif
942 940
943 early_quirks(); 941 early_quirks();
944 942