projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f906d06
)
usbip: clean up an indentation issue
author
Colin Ian King
<colin.king@canonical.com>
Fri, 27 Sep 2019 09:20:00 +0000
(10:20 +0100)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Fri, 4 Oct 2019 12:09:42 +0000
(14:09 +0200)
There is a return statement that is indented incorrectly, fix this.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Link:
https://lore.kernel.org/r/20190927092000.19373-1-colin.king@canonical.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/usbip/stub_tx.c
patch
|
blob
|
history
diff --git
a/drivers/usb/usbip/stub_tx.c
b/drivers/usb/usbip/stub_tx.c
index 36010a82b35930f1d3b154b5eebd1eac3e5b5857..b1c2f6781cb33046ae39a8692aee0f453d93fdb3 100644
(file)
--- a/
drivers/usb/usbip/stub_tx.c
+++ b/
drivers/usb/usbip/stub_tx.c
@@
-291,7
+291,7
@@
static int stub_send_ret_submit(struct stub_device *sdev)
kfree(iov);
usbip_event_add(&sdev->ud,
SDEV_EVENT_ERROR_TCP);
- return -1;
+
return -1;
}
}