Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 91e3af64 authored by Felipe Balbi's avatar Felipe Balbi
Browse files

usb: musb: host: fix build warning



very minor patch fixing the following build warning on
a debug message:

drivers/usb/musb/musb_host.c: In function ‘musb_host_rx’:
drivers/usb/musb/musb_host.c:1763:4: warning: format ‘%x’ \
	expects argument of type ‘unsigned int’, but argument \
	6 has type ‘dma_addr_t’ [-Wformat]

Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
parent 2d22b42d
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -1760,9 +1760,9 @@ void musb_host_rx(struct musb *musb, u8 epnum)

			rx_count = musb_readw(epio, MUSB_RXCOUNT);

			dev_dbg(musb->controller, "RX%d count %d, buffer 0x%x len %d/%d\n",
			dev_dbg(musb->controller, "RX%d count %d, buffer 0x%llx len %d/%d\n",
					epnum, rx_count,
					urb->transfer_dma
					(unsigned long long) urb->transfer_dma
					+ urb->actual_length,
					qh->offset,
					urb->transfer_buffer_length);