diff options
author | Daniel Mack <zonque@gmail.com> | 2014-05-26 14:52:40 +0200 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2014-06-30 14:26:27 -0500 |
commit | 49a9e885306a54048cc81b1da6b7df2b692cd8c1 (patch) | |
tree | 44301d330db1b20ab6c0c5a056aade6b75ffc41f /drivers/usb/musb | |
parent | f50e67853b363b96336718597823ed7a7e8652de (diff) |
usb: musb: fix wrong indentation in musb_host.c
Just a cosmetic cleanup with no functional change.
Signed-off-by: Daniel Mack <zonque@gmail.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/musb')
-rw-r--r-- | drivers/usb/musb/musb_host.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/usb/musb/musb_host.c b/drivers/usb/musb/musb_host.c index 88435cd7fe3d..855793d701bb 100644 --- a/drivers/usb/musb/musb_host.c +++ b/drivers/usb/musb/musb_host.c @@ -1734,11 +1734,11 @@ void musb_host_rx(struct musb *musb, u8 epnum) } } else { - /* done if urb buffer is full or short packet is recd */ - done = (urb->actual_length + xfer_len >= - urb->transfer_buffer_length - || dma->actual_len < qh->maxpacket - || dma->rx_packet_done); + /* done if urb buffer is full or short packet is recd */ + done = (urb->actual_length + xfer_len >= + urb->transfer_buffer_length + || dma->actual_len < qh->maxpacket + || dma->rx_packet_done); } /* send IN token for next packet, without AUTOREQ */ |