diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2008-01-30 07:30:35 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-01-30 07:30:35 -0500 |
commit | 64883ab0e3386d72112a9091d886352a7b4b8bf6 (patch) | |
tree | 6adf29b7f7fae6d10d173ece49c5fc9990100b29 /include/asm-x86/mach-summit | |
parent | d291cf83639a0e0b67ff783b6ed29c0a747d4901 (diff) |
x86: cleanup mpspec variants
Bring the mpspec variants into sync to prepare merging and
paravirt support.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include/asm-x86/mach-summit')
-rw-r--r-- | include/asm-x86/mach-summit/mach_apic.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/include/asm-x86/mach-summit/mach_apic.h b/include/asm-x86/mach-summit/mach_apic.h index 732f776aab8e..062c97f6100b 100644 --- a/include/asm-x86/mach-summit/mach_apic.h +++ b/include/asm-x86/mach-summit/mach_apic.h | |||
@@ -126,15 +126,15 @@ static inline physid_mask_t apicid_to_cpu_present(int apicid) | |||
126 | return physid_mask_of_physid(0); | 126 | return physid_mask_of_physid(0); |
127 | } | 127 | } |
128 | 128 | ||
129 | static inline int mpc_apic_id(struct mpc_config_processor *m, | 129 | static inline int mpc_apic_id(struct mpc_config_processor *m, |
130 | struct mpc_config_translation *translation_record) | 130 | struct mpc_config_translation *translation_record) |
131 | { | 131 | { |
132 | printk("Processor #%d %ld:%ld APIC version %d\n", | 132 | printk("Processor #%d %u:%u APIC version %d\n", |
133 | m->mpc_apicid, | 133 | m->mpc_apicid, |
134 | (m->mpc_cpufeature & CPU_FAMILY_MASK) >> 8, | 134 | (m->mpc_cpufeature & CPU_FAMILY_MASK) >> 8, |
135 | (m->mpc_cpufeature & CPU_MODEL_MASK) >> 4, | 135 | (m->mpc_cpufeature & CPU_MODEL_MASK) >> 4, |
136 | m->mpc_apicver); | 136 | m->mpc_apicver); |
137 | return (m->mpc_apicid); | 137 | return m->mpc_apicid; |
138 | } | 138 | } |
139 | 139 | ||
140 | static inline void setup_portio_remap(void) | 140 | static inline void setup_portio_remap(void) |