staging: vt6656: camel case clean up CARDbRadioPowerOff

camel case changes
pDevice -> priv
bResult -> ret

Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Malcolm Priestley 2014-05-24 14:37:07 +01:00 committed by Greg Kroah-Hartman
parent 8b515de7a7
commit 07deb71093

View file

@ -766,38 +766,36 @@ void CARDvUpdateNextTBTT(struct vnt_private *priv, u64 tsf,
* *
* Parameters: * Parameters:
* In: * In:
* pDevice - The adapter to be turned off * priv - The adapter to be turned off
* Out: * Out:
* none * none
* *
* Return Value: true if success; otherwise false * Return Value: true if success; otherwise false
* *
*/ */
int CARDbRadioPowerOff(struct vnt_private *pDevice) int CARDbRadioPowerOff(struct vnt_private *priv)
{ {
int bResult = true; int ret = true;
//if (pDevice->bRadioOff == true) priv->bRadioOff = true;
// return true;
pDevice->bRadioOff = true; switch (priv->byRFType) {
case RF_AL2230:
case RF_AL2230S:
case RF_AIROHA7230:
case RF_VT3226:
case RF_VT3226D0:
case RF_VT3342A0:
MACvRegBitsOff(priv, MAC_REG_SOFTPWRCTL,
(SOFTPWRCTL_SWPE2 | SOFTPWRCTL_SWPE3));
break;
}
switch (pDevice->byRFType) { MACvRegBitsOff(priv, MAC_REG_HOSTCR, HOSTCR_RXON);
case RF_AL2230:
case RF_AL2230S:
case RF_AIROHA7230:
case RF_VT3226: //RobertYu:20051111
case RF_VT3226D0:
case RF_VT3342A0: //RobertYu:20060609
MACvRegBitsOff(pDevice, MAC_REG_SOFTPWRCTL, (SOFTPWRCTL_SWPE2 | SOFTPWRCTL_SWPE3));
break;
}
MACvRegBitsOff(pDevice, MAC_REG_HOSTCR, HOSTCR_RXON); BBvSetDeepSleep(priv);
BBvSetDeepSleep(pDevice); return ret;
return bResult;
} }
/* /*