diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2009-08-20 04:41:58 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2009-08-27 11:12:52 -0400 |
commit | fd6c6661492226bb82f422157c535ac573cbecbd (patch) | |
tree | bbc1f0e0f9496f4670799c507b472514a19bbd19 /arch/x86/include/asm/mpspec.h | |
parent | de93410310952fb7b705f784ef22493c8362dbe8 (diff) |
x86: Move mpc_apic_id to x86_init_ops
The mpc_apic_id setup is handled by a x86_quirk. Make it a
x86_init_ops function with a default implementation.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/include/asm/mpspec.h')
-rw-r--r-- | arch/x86/include/asm/mpspec.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86/include/asm/mpspec.h b/arch/x86/include/asm/mpspec.h index e2a1bb6d71ea..03c6a92bfd42 100644 --- a/arch/x86/include/asm/mpspec.h +++ b/arch/x86/include/asm/mpspec.h | |||
@@ -62,10 +62,12 @@ extern void get_smp_config(void); | |||
62 | extern void find_smp_config(void); | 62 | extern void find_smp_config(void); |
63 | extern void early_reserve_e820_mpc_new(void); | 63 | extern void early_reserve_e820_mpc_new(void); |
64 | extern int enable_update_mptable; | 64 | extern int enable_update_mptable; |
65 | extern int default_mpc_apic_id(struct mpc_cpu *m); | ||
65 | #else | 66 | #else |
66 | static inline void find_smp_config(void) { } | 67 | static inline void find_smp_config(void) { } |
67 | static inline void early_reserve_e820_mpc_new(void) { } | 68 | static inline void early_reserve_e820_mpc_new(void) { } |
68 | #define enable_update_mptable 0 | 69 | #define enable_update_mptable 0 |
70 | #define default_mpc_apic_id NULL | ||
69 | #endif | 71 | #endif |
70 | 72 | ||
71 | void __cpuinit generic_processor_info(int apicid, int version); | 73 | void __cpuinit generic_processor_info(int apicid, int version); |