summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorAhmad Fatoum <ahmad@a3f.at>2020-09-21 09:13:01 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2020-09-28 10:27:01 +0200
commitfac4a8649e61236b57fc81150e6e3e5db9f8b5e2 (patch)
tree203458cfb56f4416e56aa30e45e637a83a26a5ec /drivers
parent69f1ff152c6bac92aed3e06d9fa0002a5ae559b8 (diff)
downloadbarebox-fac4a8649e61236b57fc81150e6e3e5db9f8b5e2.tar.gz
barebox-fac4a8649e61236b57fc81150e6e3e5db9f8b5e2.tar.xz
USB: musb: host: fix mismatched format specifier in dev_dbg()
Unadorned 0 is an int, but is printed used %zu. As it's just an interger literal, just hardcode it into the string. Signed-off-by: Ahmad Fatoum <ahmad@a3f.at> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/usb/musb/musb_host.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/musb/musb_host.c b/drivers/usb/musb/musb_host.c
index 68d819af2c..be9651b049 100644
--- a/drivers/usb/musb/musb_host.c
+++ b/drivers/usb/musb/musb_host.c
@@ -1189,8 +1189,8 @@ void musb_host_rx(struct musb *musb, u8 epnum)
pipe = urb->pipe;
- dev_dbg(musb->controller, "<== hw %d rxcsr %04x, urb actual %d (+dma %zu)\n",
- epnum, rx_csr, urb->actual_length, 0);
+ dev_dbg(musb->controller, "<== hw %d rxcsr %04x, urb actual %d (+dma 0)\n",
+ epnum, rx_csr, urb->actual_length);
/* check for errors, concurrent stall & unlink is not really
* handled yet! */