Skip to content

Commit

Permalink
Staging: usbip: usbipcommon: Fixed single line bracing issue
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Jake Champlin authored and Greg Kroah-Hartman committed Jan 18, 2013
1 parent c803dd4 commit f14287b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions drivers/staging/usbip/usbip_common.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit f14287b

Please sign in to comment.