All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] usb: musb: fix printf warning
@ 2012-02-03 13:03 Mike Frysinger
  2012-02-26 23:13 ` Marek Vasut
  0 siblings, 1 reply; 6+ messages in thread
From: Mike Frysinger @ 2012-02-03 13:03 UTC (permalink / raw)
  To: u-boot

musb_hcd.c: In function 'musb_submit_rh_msg':
musb_hcd.c:827:2: warning: format '%d' expects type 'int',
	but argument 3 has type 'long unsigned int'

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
---
 drivers/usb/musb/musb_hcd.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/usb/musb/musb_hcd.c b/drivers/usb/musb/musb_hcd.c
index 325edb9..b6b70ec 100644
--- a/drivers/usb/musb/musb_hcd.c
+++ b/drivers/usb/musb/musb_hcd.c
@@ -824,7 +824,7 @@ static int musb_submit_rh_msg(struct usb_device *dev, unsigned long pipe,
 
 	dev->act_len = len;
 	dev->status = stat;
-	debug("dev act_len %d, status %d\n", dev->act_len, dev->status);
+	debug("dev act_len %d, status %lu\n", dev->act_len, dev->status);
 
 	return stat;
 }
-- 
1.7.8.4

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

* [U-Boot] [PATCH] usb: musb: fix printf warning
  2012-02-03 13:03 [U-Boot] [PATCH] usb: musb: fix printf warning Mike Frysinger
@ 2012-02-26 23:13 ` Marek Vasut
  2012-02-26 23:38   ` Mike Frysinger
  0 siblings, 1 reply; 6+ messages in thread
From: Marek Vasut @ 2012-02-26 23:13 UTC (permalink / raw)
  To: u-boot

> musb_hcd.c: In function 'musb_submit_rh_msg':
> musb_hcd.c:827:2: warning: format '%d' expects type 'int',
> 	but argument 3 has type 'long unsigned int'
> 
> Signed-off-by: Mike Frysinger <vapier@gentoo.org>
> ---
>  drivers/usb/musb/musb_hcd.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 

Hi,

what's the status of this patch/patchset?

Thanks
M

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

* [U-Boot] [PATCH] usb: musb: fix printf warning
  2012-02-26 23:13 ` Marek Vasut
@ 2012-02-26 23:38   ` Mike Frysinger
  2012-02-26 23:48     ` Marek Vasut
  0 siblings, 1 reply; 6+ messages in thread
From: Mike Frysinger @ 2012-02-26 23:38 UTC (permalink / raw)
  To: u-boot

On Sunday 26 February 2012 18:13:58 Marek Vasut wrote:
> > musb_hcd.c: In function 'musb_submit_rh_msg':
> > musb_hcd.c:827:2: warning: format '%d' expects type 'int',
> > 
> > 	but argument 3 has type 'long unsigned int'
> 
> what's the status of this patch/patchset?

the usb ones are waiting for someone to pick up
-mike
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: This is a digitally signed message part.
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20120226/4681dfb5/attachment.pgp>

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

* [U-Boot] [PATCH] usb: musb: fix printf warning
  2012-02-26 23:38   ` Mike Frysinger
@ 2012-02-26 23:48     ` Marek Vasut
  2012-02-27  0:24       ` Mike Frysinger
  0 siblings, 1 reply; 6+ messages in thread
From: Marek Vasut @ 2012-02-26 23:48 UTC (permalink / raw)
  To: u-boot

> On Sunday 26 February 2012 18:13:58 Marek Vasut wrote:
> > > musb_hcd.c: In function 'musb_submit_rh_msg':
> > > musb_hcd.c:827:2: warning: format '%d' expects type 'int',
> > > 
> > > 	but argument 3 has type 'long unsigned int'
> > 
> > what's the status of this patch/patchset?
> 
> the usb ones are waiting for someone to pick up
> -mike

Ok, can you please resend and Cc me so I can pick them up?

M

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

* [U-Boot] [PATCH] usb: musb: fix printf warning
  2012-02-26 23:48     ` Marek Vasut
@ 2012-02-27  0:24       ` Mike Frysinger
  2012-02-27 13:17         ` Marek Vasut
  0 siblings, 1 reply; 6+ messages in thread
From: Mike Frysinger @ 2012-02-27  0:24 UTC (permalink / raw)
  To: u-boot

On Sunday 26 February 2012 18:48:26 Marek Vasut wrote:
> > On Sunday 26 February 2012 18:13:58 Marek Vasut wrote:
> > > > musb_hcd.c: In function 'musb_submit_rh_msg':
> > > > musb_hcd.c:827:2: warning: format '%d' expects type 'int',
> > > > 
> > > > 	but argument 3 has type 'long unsigned int'
> > > 
> > > what's the status of this patch/patchset?
> > 
> > the usb ones are waiting for someone to pick up
> 
> Ok, can you please resend and Cc me so I can pick them up?

http://patchwork.ozlabs.org/patch/139366/
-mike
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: This is a digitally signed message part.
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20120226/e4695a9f/attachment.pgp>

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

* [U-Boot] [PATCH] usb: musb: fix printf warning
  2012-02-27  0:24       ` Mike Frysinger
@ 2012-02-27 13:17         ` Marek Vasut
  0 siblings, 0 replies; 6+ messages in thread
From: Marek Vasut @ 2012-02-27 13:17 UTC (permalink / raw)
  To: u-boot

> On Sunday 26 February 2012 18:48:26 Marek Vasut wrote:
> > > On Sunday 26 February 2012 18:13:58 Marek Vasut wrote:
> > > > > musb_hcd.c: In function 'musb_submit_rh_msg':
> > > > > musb_hcd.c:827:2: warning: format '%d' expects type 'int',
> > > > > 
> > > > > 	but argument 3 has type 'long unsigned int'
> > > > 
> > > > what's the status of this patch/patchset?
> > > 
> > > the usb ones are waiting for someone to pick up
> > 
> > Ok, can you please resend and Cc me so I can pick them up?
> 
> http://patchwork.ozlabs.org/patch/139366/
> -mike

Assigned, thanks!

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

end of thread, other threads:[~2012-02-27 13:17 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-02-03 13:03 [U-Boot] [PATCH] usb: musb: fix printf warning Mike Frysinger
2012-02-26 23:13 ` Marek Vasut
2012-02-26 23:38   ` Mike Frysinger
2012-02-26 23:48     ` Marek Vasut
2012-02-27  0:24       ` Mike Frysinger
2012-02-27 13:17         ` Marek Vasut

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.