Commit 76d382fc authored by Malcolm Priestley's avatar Malcolm Priestley Committed by Greg Kroah-Hartman
Browse files

staging: vt6656: usb_device_reset remove camel case



Camel case change
pDevice -> priv

Signed-off-by: default avatarMalcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent dfcd9092
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -438,13 +438,13 @@ static void device_free_rx_bufs(struct vnt_private *priv)
	return;
}

static void usb_device_reset(struct vnt_private *pDevice)
static void usb_device_reset(struct vnt_private *priv)
{
	int status;

	status = usb_reset_device(pDevice->usb);
	status = usb_reset_device(priv->usb);
	if (status)
		dev_warn(&pDevice->usb->dev,
		dev_warn(&priv->usb->dev,
			 "usb_device_reset fail status=%d\n", status);
	return ;
}