All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 01/15] sparc: fix decimal printf format specifiers prefixed with 0x
@ 2014-08-06  4:41 ` Hans Wennborg
  0 siblings, 0 replies; 4+ messages in thread
From: Hans Wennborg @ 2014-08-06  4:41 UTC (permalink / raw)
  To: davem, sparclinux, linux-kernel; +Cc: Hans Wennborg

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>
---
 arch/sparc/kernel/smp_32.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/sparc/kernel/smp_32.c b/arch/sparc/kernel/smp_32.c
index 7958242..b3a5d81 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)
 	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;
-- 
2.0.0.526.g5318336


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 01/15] sparc: fix decimal printf format specifiers prefixed with 0x
@ 2014-08-06  4:41 ` Hans Wennborg
  0 siblings, 0 replies; 4+ messages in thread
From: Hans Wennborg @ 2014-08-06  4:41 UTC (permalink / raw)
  To: davem, sparclinux, linux-kernel; +Cc: Hans Wennborg

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>
---
 arch/sparc/kernel/smp_32.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/sparc/kernel/smp_32.c b/arch/sparc/kernel/smp_32.c
index 7958242..b3a5d81 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)
 	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;
-- 
2.0.0.526.g5318336


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 01/15] sparc: fix decimal printf format specifiers prefixed with 0x
  2014-08-06  4:41 ` Hans Wennborg
@ 2014-08-06 21:42   ` David Miller
  -1 siblings, 0 replies; 4+ messages in thread
From: David Miller @ 2014-08-06 21:42 UTC (permalink / raw)
  To: hans; +Cc: sparclinux, linux-kernel

From: Hans Wennborg <hans@hanshq.net>
Date: Tue,  5 Aug 2014 21:41:36 -0700

> 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>

Applied, thank you.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 01/15] sparc: fix decimal printf format specifiers prefixed with 0x
@ 2014-08-06 21:42   ` David Miller
  0 siblings, 0 replies; 4+ messages in thread
From: David Miller @ 2014-08-06 21:42 UTC (permalink / raw)
  To: hans; +Cc: sparclinux, linux-kernel

From: Hans Wennborg <hans@hanshq.net>
Date: Tue,  5 Aug 2014 21:41:36 -0700

> 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>

Applied, thank you.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-08-06 21:42 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-08-06  4:41 [PATCH 01/15] sparc: fix decimal printf format specifiers prefixed with 0x Hans Wennborg
2014-08-06  4:41 ` Hans Wennborg
2014-08-06 21:42 ` David Miller
2014-08-06 21:42   ` David Miller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.