Commit f14287b9 authored by Jake Champlin's avatar Jake Champlin Committed by Greg Kroah-Hartman

Staging: usbip: usbipcommon: Fixed single line bracing issue

Fixed coding style issue with single line braces.
Signed-off-by: default avatarJake Champlin <jake.champlin.27@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent c803dd48
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment