summaryrefslogtreecommitdiffstats
path: root/drivers/staging/usbip
diff options
context:
space:
mode:
authorJake Champlin2013-01-17 04:16:05 +0100
committerGreg Kroah-Hartman2013-01-18 01:43:20 +0100
commitf14287b9671d462a54d3b6800832fb519284eb34 (patch)
tree3aa11273ed20cd157ca60c2869aa84407367c3ce /drivers/staging/usbip
parentstaging: sb105x: clean up interface type test (diff)
downloadkernel-qcow2-linux-f14287b9671d462a54d3b6800832fb519284eb34.tar.gz
kernel-qcow2-linux-f14287b9671d462a54d3b6800832fb519284eb34.tar.xz
kernel-qcow2-linux-f14287b9671d462a54d3b6800832fb519284eb34.zip
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 75189feac380..75aa5bfcb8dd 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)