Staging: vt6656: Fix spaces and char limit
authorJitendra Kumar Khasdev <jkhasdev@gmail.com>
Sat, 25 Feb 2017 20:18:40 +0000 (01:48 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 6 Mar 2017 08:17:07 +0000 (09:17 +0100)
This is a patch to usbpipe.c to fix space and char limit warning found by
checkpatch tool.

Signed-off-by: Jitendra Khasdev <jkhasdev@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vt6656/usbpipe.c

index 1ae6a64..9ad8503 100644 (file)
@@ -82,8 +82,8 @@ int vnt_control_in(struct vnt_private *priv, u8 request, u16 value,
        mutex_lock(&priv->usb_lock);
 
        status = usb_control_msg(priv->usb,
-                               usb_rcvctrlpipe(priv->usb, 0), request, 0xc0, value,
-                               index, buffer, length, USB_CTL_WAIT);
+                               usb_rcvctrlpipe(priv->usb, 0), request, 0xc0,
+                               value, index, buffer, length, USB_CTL_WAIT);
 
        mutex_unlock(&priv->usb_lock);