Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 551d57ff authored by Hans Wennborg's avatar Hans Wennborg Committed by David S. Miller
Browse files

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: default avatarHans Wennborg <hans@hanshq.net>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 85417aef
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -68,7 +68,7 @@ void smp_store_cpu_info(int id)
	mid = cpu_get_hwmid(cpu_node);

	if (mid < 0) {
		printk(KERN_NOTICE "No MID found for CPU%d at node 0x%08d", id, cpu_node);
		printk(KERN_NOTICE "No MID found for CPU%d at node 0x%08x", id, cpu_node);
		mid = 0;
	}
	cpu_data(id).mid = mid;