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:
Jitendra Kumar Khasdev 2017-02-26 01:48:40 +05:30 committed by Greg Kroah-Hartman
parent dd4eab3a3a
commit 1ce08c27d1
1 changed files with 2 additions and 2 deletions

View 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);