diff options
Diffstat (limited to 'drivers/usb/musb/musb_dsps.c')
-rw-r--r-- | drivers/usb/musb/musb_dsps.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/musb/musb_dsps.c b/drivers/usb/musb/musb_dsps.c index b23ad150a165..65d931a28a14 100644 --- a/drivers/usb/musb/musb_dsps.c +++ b/drivers/usb/musb/musb_dsps.c | |||
@@ -621,7 +621,7 @@ static void dsps_read_fifo32(struct musb_hw_ep *hw_ep, u16 len, u8 *dst) | |||
621 | void __iomem *fifo = hw_ep->fifo; | 621 | void __iomem *fifo = hw_ep->fifo; |
622 | 622 | ||
623 | if (len >= 4) { | 623 | if (len >= 4) { |
624 | readsl(fifo, dst, len >> 2); | 624 | ioread32_rep(fifo, dst, len >> 2); |
625 | dst += len & ~0x03; | 625 | dst += len & ~0x03; |
626 | len &= 0x03; | 626 | len &= 0x03; |
627 | } | 627 | } |