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-numaq | |
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-numaq')
-rw-r--r-- | include/asm-x86/mach-numaq/mach_apic.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/asm-x86/mach-numaq/mach_apic.h b/include/asm-x86/mach-numaq/mach_apic.h index 5e5e7dd2692..17e183bd39c 100644 --- a/include/asm-x86/mach-numaq/mach_apic.h +++ b/include/asm-x86/mach-numaq/mach_apic.h | |||
@@ -101,11 +101,11 @@ static inline int mpc_apic_id(struct mpc_config_processor *m, | |||
101 | int quad = translation_record->trans_quad; | 101 | int quad = translation_record->trans_quad; |
102 | int logical_apicid = generate_logical_apicid(quad, m->mpc_apicid); | 102 | int logical_apicid = generate_logical_apicid(quad, m->mpc_apicid); |
103 | 103 | ||
104 | printk("Processor #%d %ld:%ld APIC version %d (quad %d, apic %d)\n", | 104 | printk("Processor #%d %u:%u APIC version %d (quad %d, apic %d)\n", |
105 | m->mpc_apicid, | 105 | m->mpc_apicid, |
106 | (m->mpc_cpufeature & CPU_FAMILY_MASK) >> 8, | 106 | (m->mpc_cpufeature & CPU_FAMILY_MASK) >> 8, |
107 | (m->mpc_cpufeature & CPU_MODEL_MASK) >> 4, | 107 | (m->mpc_cpufeature & CPU_MODEL_MASK) >> 4, |
108 | m->mpc_apicver, quad, logical_apicid); | 108 | m->mpc_apicver, quad, logical_apicid); |
109 | return logical_apicid; | 109 | return logical_apicid; |
110 | } | 110 | } |
111 | 111 | ||