Commit 49a9e885 authored by Daniel Mack's avatar Daniel Mack Committed by Felipe Balbi

usb: musb: fix wrong indentation in musb_host.c

Just a cosmetic cleanup with no functional change.
Signed-off-by: default avatarDaniel Mack <zonque@gmail.com>
Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
parent f50e6785
......@@ -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 */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment