From: Malcolm Priestley Date: Mon, 19 May 2014 19:33:06 +0000 (+0100) Subject: staging: vt6656: BBvSetVGAGainOffset remove camel case X-Git-Tag: firefly_0821_release~176^2~3465^2~39^2~662 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=15897f6724f3e48b73f52db28b5a8a4107ebf723;p=firefly-linux-kernel-4.4.55.git staging: vt6656: BBvSetVGAGainOffset remove camel case pDevice -> priv byData -> data Signed-off-by: Malcolm Priestley Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/vt6656/baseband.c b/drivers/staging/vt6656/baseband.c index e440823ea13b..466abd98f4a1 100644 --- a/drivers/staging/vt6656/baseband.c +++ b/drivers/staging/vt6656/baseband.c @@ -1102,18 +1102,18 @@ void BBvSetShortSlotTime(struct vnt_private *priv) ControlvWriteByte(priv, MESSAGE_REQUEST_BBREG, 0x0a, priv->byBBRxConf); } -void BBvSetVGAGainOffset(struct vnt_private *pDevice, u8 byData) +void BBvSetVGAGainOffset(struct vnt_private *priv, u8 data) { - ControlvWriteByte(pDevice, MESSAGE_REQUEST_BBREG, 0xE7, byData); + ControlvWriteByte(priv, MESSAGE_REQUEST_BBREG, 0xE7, data); - // patch for 3253B0 Baseband with Cardbus module - if (pDevice->bShortSlotTime) - pDevice->byBBRxConf &= 0xDF; /* 1101 1111 */ + /* patch for 3253B0 Baseband with Cardbus module */ + if (priv->bShortSlotTime) + priv->byBBRxConf &= 0xdf; /* 1101 1111 */ else - pDevice->byBBRxConf |= 0x20; /* 0010 0000 */ + priv->byBBRxConf |= 0x20; /* 0010 0000 */ - ControlvWriteByte(pDevice, MESSAGE_REQUEST_BBREG, 0x0A, pDevice->byBBRxConf);//CR10 + ControlvWriteByte(priv, MESSAGE_REQUEST_BBREG, 0x0a, priv->byBBRxConf); } /*