diff options
author | Hans Wennborg <hans@hanshq.net> | 2014-08-06 00:41:36 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-08-06 17:41:10 -0400 |
commit | 551d57ff225b43f239808216468e962bcea2edb2 (patch) | |
tree | 5dbc2b6b046a7ba257c19d4f941102b722a71683 /arch/sparc | |
parent | 85417aef44fc58b08773117ceb1bc6ca5684e973 (diff) |
sparc: fix decimal printf format specifiers prefixed with 0x
The prefix suggests the number should be printed in hex, so use
the %x specifier to do that.
Found by using regex suggested by Joe Perches.
Signed-off-by: Hans Wennborg <hans@hanshq.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc')
-rw-r--r-- | arch/sparc/kernel/smp_32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sparc/kernel/smp_32.c b/arch/sparc/kernel/smp_32.c index 7958242d63c5..b3a5d81b20f0 100644 --- a/arch/sparc/kernel/smp_32.c +++ b/arch/sparc/kernel/smp_32.c | |||
@@ -68,7 +68,7 @@ void smp_store_cpu_info(int id) | |||
68 | mid = cpu_get_hwmid(cpu_node); | 68 | mid = cpu_get_hwmid(cpu_node); |
69 | 69 | ||
70 | if (mid < 0) { | 70 | if (mid < 0) { |
71 | printk(KERN_NOTICE "No MID found for CPU%d at node 0x%08d", id, cpu_node); | 71 | printk(KERN_NOTICE "No MID found for CPU%d at node 0x%08x", id, cpu_node); |
72 | mid = 0; | 72 | mid = 0; |
73 | } | 73 | } |
74 | cpu_data(id).mid = mid; | 74 | cpu_data(id).mid = mid; |