Re: [U-Boot] [PATCH] usb: musb: fix printf warning

2012-02-27 Thread Marek Vasut
 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!
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH] usb: musb: fix printf warning

2012-02-26 Thread Marek Vasut
 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 vap...@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
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH] usb: musb: fix printf warning

2012-02-26 Thread Mike Frysinger
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


signature.asc
Description: This is a digitally signed message part.
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH] usb: musb: fix printf warning

2012-02-26 Thread Marek Vasut
 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
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH] usb: musb: fix printf warning

2012-02-26 Thread Mike Frysinger
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


signature.asc
Description: This is a digitally signed message part.
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] [PATCH] usb: musb: fix printf warning

2012-02-03 Thread Mike Frysinger
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 vap...@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

___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot