Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -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)