staging: vt6656: rf.c: RFbSetPower Remove camel case and clean up.
White space clean up. Camel case changes; pDevice -> priv uRATE -> rate uCH -> channel bResult -> ret byPwr -> power No functional changes. Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
d6bbce0642
commit
a628747fb6
1 changed files with 27 additions and 28 deletions
|
@ -732,23 +732,23 @@ int IFRFbWriteEmbedded(struct vnt_private *pDevice, u32 dwData)
|
|||
* Return Value: true if succeeded; false if failed.
|
||||
*
|
||||
*/
|
||||
int RFbSetPower(struct vnt_private *pDevice, u32 uRATE, u32 uCH)
|
||||
int RFbSetPower(struct vnt_private *priv, u32 rate, u32 channel)
|
||||
{
|
||||
int bResult = true;
|
||||
u8 byPwr = pDevice->byCCKPwr;
|
||||
int ret = true;
|
||||
u8 power = priv->byCCKPwr;
|
||||
|
||||
if (pDevice->dwDiagRefCount)
|
||||
if (priv->dwDiagRefCount)
|
||||
return true;
|
||||
|
||||
if (uCH == 0)
|
||||
if (channel == 0)
|
||||
return -EINVAL;
|
||||
|
||||
switch (uRATE) {
|
||||
switch (rate) {
|
||||
case RATE_1M:
|
||||
case RATE_2M:
|
||||
case RATE_5M:
|
||||
case RATE_11M:
|
||||
byPwr = pDevice->abyCCKPwrTbl[uCH-1];
|
||||
power = priv->abyCCKPwrTbl[channel-1];
|
||||
break;
|
||||
case RATE_6M:
|
||||
case RATE_9M:
|
||||
|
@ -757,17 +757,16 @@ int RFbSetPower(struct vnt_private *pDevice, u32 uRATE, u32 uCH)
|
|||
case RATE_36M:
|
||||
case RATE_48M:
|
||||
case RATE_54M:
|
||||
if (uCH > CB_MAX_CHANNEL_24G) {
|
||||
byPwr = pDevice->abyOFDMAPwrTbl[uCH-15];
|
||||
} else {
|
||||
byPwr = pDevice->abyOFDMPwrTbl[uCH-1];
|
||||
}
|
||||
if (channel > CB_MAX_CHANNEL_24G)
|
||||
power = priv->abyOFDMAPwrTbl[channel-15];
|
||||
else
|
||||
power = priv->abyOFDMPwrTbl[channel-1];
|
||||
break;
|
||||
}
|
||||
|
||||
bResult = RFbRawSetPower(pDevice, byPwr, uRATE);
|
||||
ret = RFbRawSetPower(priv, power, rate);
|
||||
|
||||
return bResult;
|
||||
return ret;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Reference in a new issue