Commit 1ce08c27 authored by Jitendra Kumar Khasdev's avatar Jitendra Kumar Khasdev Committed by Greg Kroah-Hartman

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: default avatarJitendra Khasdev <jkhasdev@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent dd4eab3a
......@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment