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

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