Commit 15897f67 authored by Malcolm Priestley's avatar Malcolm Priestley Committed by Greg Kroah-Hartman

staging: vt6656: BBvSetVGAGainOffset remove camel case

pDevice -> priv
byData -> data
Signed-off-by: default avatarMalcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 4bdb3120
...@@ -1102,18 +1102,18 @@ void BBvSetShortSlotTime(struct vnt_private *priv) ...@@ -1102,18 +1102,18 @@ void BBvSetShortSlotTime(struct vnt_private *priv)
ControlvWriteByte(priv, MESSAGE_REQUEST_BBREG, 0x0a, priv->byBBRxConf); 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 /* patch for 3253B0 Baseband with Cardbus module */
if (pDevice->bShortSlotTime) if (priv->bShortSlotTime)
pDevice->byBBRxConf &= 0xDF; /* 1101 1111 */ priv->byBBRxConf &= 0xdf; /* 1101 1111 */
else 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);
} }
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment