aboutsummaryrefslogtreecommitdiff
path: root/drivers/staging/usbip
diff options
context:
space:
mode:
authorJake Champlin <jake.champlin.27@gmail.com>2013-01-16 22:16:05 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-01-17 16:43:20 -0800
commitf14287b9671d462a54d3b6800832fb519284eb34 (patch)
tree3aa11273ed20cd157ca60c2869aa84407367c3ce /drivers/staging/usbip
parentc803dd48f0539cb6adcbbcf41c758502e1e102cb (diff)
Staging: usbip: usbipcommon: Fixed single line bracing issue
Fixed coding style issue with single line braces. Signed-off-by: Jake Champlin <jake.champlin.27@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/usbip')
-rw-r--r--drivers/staging/usbip/usbip_common.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/staging/usbip/usbip_common.c b/drivers/staging/usbip/usbip_common.c
index 75189feac38..75aa5bfcb8d 100644
--- a/drivers/staging/usbip/usbip_common.c
+++ b/drivers/staging/usbip/usbip_common.c
@@ -672,9 +672,8 @@ int usbip_recv_iso(struct usbip_device *ud, struct urb *urb)
return 0;
/* my Bluetooth dongle gets ISO URBs which are np = 0 */
- if (np == 0) {
+ if (np == 0)
return 0;
- }
buff = kzalloc(size, GFP_KERNEL);
if (!buff)