summaryrefslogtreecommitdiff
path: root/drivers/staging/vt6656/int.c
diff options
context:
space:
mode:
authorMalcolm Priestley <tvboxspy@gmail.com>2014-07-15 19:54:32 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-07-15 12:11:39 -0700
commit526fed3e16419ff75857ca580eb11ac03e5b1979 (patch)
tree46e17294bcb135bac9ad534a5cbc4c8a3b54923e /drivers/staging/vt6656/int.c
parentd4ec15e16ff0d72f9a3f1909b1ed20515f1f40d0 (diff)
staging: vt6656: INTvWorkItem remove camel case
Camel case changes pDevice -> priv ntStatus -> status Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/vt6656/int.c')
-rw-r--r--drivers/staging/vt6656/int.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/staging/vt6656/int.c b/drivers/staging/vt6656/int.c
index dad1543b98e1..54016f93e31b 100644
--- a/drivers/staging/vt6656/int.c
+++ b/drivers/staging/vt6656/int.c
@@ -77,18 +77,18 @@ static const u8 fallback_rate1[5][5] = {
* if we've gotten no data
*
-*/
-void INTvWorkItem(struct vnt_private *pDevice)
+void INTvWorkItem(struct vnt_private *priv)
{
unsigned long flags;
- int ntStatus;
+ int status;
DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"---->Interrupt Polling Thread\n");
- spin_lock_irqsave(&pDevice->lock, flags);
+ spin_lock_irqsave(&priv->lock, flags);
- ntStatus = PIPEnsInterruptRead(pDevice);
+ status = PIPEnsInterruptRead(priv);
- spin_unlock_irqrestore(&pDevice->lock, flags);
+ spin_unlock_irqrestore(&priv->lock, flags);
}
static int vnt_int_report_rate(struct vnt_private *priv, u8 pkt_no, u8 tsr)