Staging: vt6656: Fix spaces and char limit
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>
This commit is contained in:
parent
dd4eab3a3a
commit
1ce08c27d1
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue