diff options
author | Colin Ian King | 2019-02-11 11:14:46 -0600 |
---|---|---|
committer | Greg Kroah-Hartman | 2019-02-12 08:54:44 +0100 |
commit | fce11867472bf6710693bbe83f1fd9ab5fcc7f0e (patch) | |
tree | 11b7c13fcefcd4c1eefd8a555afd96186f59054a /drivers/usb/musb | |
parent | 15e99b13b44bd969b085f866fb4d5dc72f65d2d0 (diff) |
USB: musb: fix indentation issue on a return statement
A return statement is indented one level too far, fix this by removing
a tab.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Bin Liu <b-liu@ti.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/musb')
-rw-r--r-- | drivers/usb/musb/musb_host.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/musb/musb_host.c b/drivers/usb/musb/musb_host.c index b59ce9ad14ce..0b1eb15b6b08 100644 --- a/drivers/usb/musb/musb_host.c +++ b/drivers/usb/musb/musb_host.c @@ -1283,7 +1283,7 @@ void musb_host_tx(struct musb *musb, u8 epnum) MUSB_TXCSR_H_WZC_BITS | MUSB_TXCSR_TXPKTRDY); } - return; + return; } done: |