summaryrefslogtreecommitdiffstats
path: root/drivers/staging/vt6656/baseband.c
diff options
context:
space:
mode:
authorMalcolm Priestley <tvboxspy@gmail.com>2014-05-19 20:33:08 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-05-19 15:23:23 -0700
commit36c69f3ce5fc1218308fb9ce3ecf1f4119e40586 (patch)
tree4dbd3c2d1ee5e374ee2913bd3b8ed50c4632fe21 /drivers/staging/vt6656/baseband.c
parent07c116f29c4825f591b9428510d18cb128b08e99 (diff)
downloadlinux-36c69f3ce5fc1218308fb9ce3ecf1f4119e40586.tar.bz2
staging: vt6656: BBvExitDeepSleep remove camel case.
pDevice -> priv Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/vt6656/baseband.c')
-rw-r--r--drivers/staging/vt6656/baseband.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/vt6656/baseband.c b/drivers/staging/vt6656/baseband.c
index 9956f5afc3ad..0cde6b5bf7d0 100644
--- a/drivers/staging/vt6656/baseband.c
+++ b/drivers/staging/vt6656/baseband.c
@@ -1134,10 +1134,10 @@ void BBvSetDeepSleep(struct vnt_private *priv)
ControlvWriteByte(priv, MESSAGE_REQUEST_BBREG, 0x0d, 0xB9);/* CR13 */
}
-void BBvExitDeepSleep(struct vnt_private *pDevice)
+void BBvExitDeepSleep(struct vnt_private *priv)
{
- ControlvWriteByte(pDevice, MESSAGE_REQUEST_BBREG, 0x0C, 0x00);//CR12
- ControlvWriteByte(pDevice, MESSAGE_REQUEST_BBREG, 0x0D, 0x01);//CR13
+ ControlvWriteByte(priv, MESSAGE_REQUEST_BBREG, 0x0c, 0x00);/* CR12 */
+ ControlvWriteByte(priv, MESSAGE_REQUEST_BBREG, 0x0d, 0x01);/* CR13 */
}
static unsigned long s_ulGetLowSQ3(struct vnt_private *pDevice)