diff options
author | Yinghai Lu <yhlu.kernel@gmail.com> | 2008-09-11 06:56:46 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-10-16 16:53:09 +0200 |
commit | 823b259b80158a5fb694f6784e18b5bae669c599 (patch) | |
tree | ad5578993ff3f3e8dacf3ad91757911a0899ea87 /arch/x86/kernel/cpu/amd.c | |
parent | x86: io-apic - get rid of __DO_ACTION macro (diff) | |
download | linux-823b259b80158a5fb694f6784e18b5bae669c599.tar.xz linux-823b259b80158a5fb694f6784e18b5bae669c599.zip |
x86: print out apic id in hex format
Signed-off-by: Yinghai Lu <yhlu.kernel@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/cpu/amd.c')
-rw-r--r-- | arch/x86/kernel/cpu/amd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/cpu/amd.c b/arch/x86/kernel/cpu/amd.c index 32e73520adf7..8f1e31db2ad5 100644 --- a/arch/x86/kernel/cpu/amd.c +++ b/arch/x86/kernel/cpu/amd.c @@ -249,7 +249,7 @@ static void __cpuinit srat_detect_node(struct cpuinfo_x86 *c) } numa_set_node(cpu, node); - printk(KERN_INFO "CPU %d/%x -> Node %d\n", cpu, apicid, node); + printk(KERN_INFO "CPU %d/0x%x -> Node %d\n", cpu, apicid, node); #endif } |