staging: vt6656: clean up device_free_int_bufs.
authorMalcolm Priestley <tvboxspy@gmail.com>
Fri, 28 Feb 2014 23:58:37 +0000 (23:58 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 1 Mar 2014 00:48:36 +0000 (16:48 -0800)
Clean up white and camel case.

Camel case change
pDevice -> priv

Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vt6656/main_usb.c

index 669e4f3e0406116accb23951cc7f78018033eddf..0475a2056fe6b26157fb5f6549418d829232e3bd 100644 (file)
@@ -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;
 }