mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-25 06:00:43 +00:00
usb: musb: fix printf warning
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>
This commit is contained in:
parent
f933e84e34
commit
b974308105
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue