All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 05/15] mfd: rtsx_usb: fix decimal printf format specifiers prefixed with 0x
@ 2014-08-06  4:42 Hans Wennborg
  2014-08-21  8:13 ` Lee Jones
  0 siblings, 1 reply; 2+ messages in thread
From: Hans Wennborg @ 2014-08-06  4:42 UTC (permalink / raw)
  To: sameo, lee.jones, 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>
---
 drivers/mfd/rtsx_usb.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mfd/rtsx_usb.c b/drivers/mfd/rtsx_usb.c
index 6352bec..2d488e9 100644
--- a/drivers/mfd/rtsx_usb.c
+++ b/drivers/mfd/rtsx_usb.c
@@ -684,7 +684,7 @@ static int rtsx_usb_suspend(struct usb_interface *intf, pm_message_t message)
 	struct rtsx_ucr *ucr =
 		(struct rtsx_ucr *)usb_get_intfdata(intf);
 
-	dev_dbg(&intf->dev, "%s called with pm message 0x%04u\n",
+	dev_dbg(&intf->dev, "%s called with pm message 0x%04x\n",
 			__func__, message.event);
 
 	/*
-- 
2.0.0.526.g5318336


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

* Re: [PATCH 05/15] mfd: rtsx_usb: fix decimal printf format specifiers prefixed with 0x
  2014-08-06  4:42 [PATCH 05/15] mfd: rtsx_usb: fix decimal printf format specifiers prefixed with 0x Hans Wennborg
@ 2014-08-21  8:13 ` Lee Jones
  0 siblings, 0 replies; 2+ messages in thread
From: Lee Jones @ 2014-08-21  8:13 UTC (permalink / raw)
  To: Hans Wennborg; +Cc: sameo, linux-kernel

On Tue, 05 Aug 2014, Hans Wennborg wrote:

> 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>
> ---
>  drivers/mfd/rtsx_usb.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Applied, thanks.

> diff --git a/drivers/mfd/rtsx_usb.c b/drivers/mfd/rtsx_usb.c
> index 6352bec..2d488e9 100644
> --- a/drivers/mfd/rtsx_usb.c
> +++ b/drivers/mfd/rtsx_usb.c
> @@ -684,7 +684,7 @@ static int rtsx_usb_suspend(struct usb_interface *intf, pm_message_t message)
>  	struct rtsx_ucr *ucr =
>  		(struct rtsx_ucr *)usb_get_intfdata(intf);
>  
> -	dev_dbg(&intf->dev, "%s called with pm message 0x%04u\n",
> +	dev_dbg(&intf->dev, "%s called with pm message 0x%04x\n",
>  			__func__, message.event);
>  
>  	/*

-- 
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog

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

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

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-08-06  4:42 [PATCH 05/15] mfd: rtsx_usb: fix decimal printf format specifiers prefixed with 0x Hans Wennborg
2014-08-21  8:13 ` Lee Jones

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.