mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-04-29 05:52:38 -04:00
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:
committed by
Greg Kroah-Hartman
parent
dfcd909227
commit
76d382fc80
@@ -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 ;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user