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>
This commit is contained in:
Jake Champlin 2013-01-16 22:16:05 -05:00 коммит произвёл Greg Kroah-Hartman
Родитель c803dd48f0
Коммит f14287b967
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -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)