staging: vt6656: usb_device_reset remove camel case

Camel case change
pDevice -> priv

Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Malcolm Priestley 2014-07-18 06:36:08 +01:00 committed by Greg Kroah-Hartman
parent dfcd909227
commit 76d382fc80

View file

@ -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 ;
}