diff options
author | Colin Ian King <colin.king@canonical.com> | 2018-11-19 16:43:54 +0000 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-11-23 16:13:14 +0100 |
commit | 18557feccfbf96dd6d4a62723904927064ad3592 (patch) | |
tree | f32109b24725a27967060eccc7a85804a048bd1d /drivers/usb/storage | |
parent | 4c96499c39e31b5a12f37c2396a5f81d1b6be1ab (diff) | |
download | blackbird-op-linux-18557feccfbf96dd6d4a62723904927064ad3592.tar.gz blackbird-op-linux-18557feccfbf96dd6d4a62723904927064ad3592.zip |
USB: ene_usb6250: add missing indentation
There is a missing indentation before the return statement. Add it.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/storage')
-rw-r--r-- | drivers/usb/storage/ene_ub6250.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/storage/ene_ub6250.c b/drivers/usb/storage/ene_ub6250.c index 4d261e4de9ad..c26129d5b943 100644 --- a/drivers/usb/storage/ene_ub6250.c +++ b/drivers/usb/storage/ene_ub6250.c @@ -1131,7 +1131,7 @@ static int ms_lib_alloc_writebuf(struct us_data *us) ms_lib_clear_writebuf(us); -return 0; + return 0; } static int ms_lib_force_setlogical_pair(struct us_data *us, u16 logblk, u16 phyblk) |