Commit 1506bf37 authored by Malcolm Priestley's avatar Malcolm Priestley Committed by Greg Kroah-Hartman

staging: vt6656: clean up device_free_int_bufs.

Clean up white and 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 f2625c24
......@@ -801,9 +801,10 @@ static void usb_device_reset(struct vnt_private *pDevice)
return ;
}
static void device_free_int_bufs(struct vnt_private *pDevice)
static void device_free_int_bufs(struct vnt_private *priv)
{
kfree(pDevice->int_buf.data_buf);
kfree(priv->int_buf.data_buf);
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