Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -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;
}