Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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);