Commit c1aa41dc authored by Paul McQuade's avatar Paul McQuade Committed by Greg Kroah-Hartman

Staging: vt6655: Renamed uRATE to rate

Renamed uRATE to rate to avoid camelcase
Signed-off-by: default avatarPaul McQuade <paulmcquad@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 749f3c05
...@@ -768,7 +768,7 @@ bool RFvWriteWakeProgSyn(struct vnt_private *priv, unsigned char byRFType, ...@@ -768,7 +768,7 @@ bool RFvWriteWakeProgSyn(struct vnt_private *priv, unsigned char byRFType,
*/ */
bool RFbSetPower( bool RFbSetPower(
struct vnt_private *priv, struct vnt_private *priv,
unsigned int uRATE, unsigned int rate,
u16 uCH u16 uCH
) )
{ {
...@@ -782,7 +782,7 @@ bool RFbSetPower( ...@@ -782,7 +782,7 @@ bool RFbSetPower(
if ((uCH < 1) || (uCH > CB_MAX_CHANNEL)) if ((uCH < 1) || (uCH > CB_MAX_CHANNEL))
return false; return false;
switch (uRATE) { switch (rate) {
case RATE_1M: case RATE_1M:
case RATE_2M: case RATE_2M:
case RATE_5M: case RATE_5M:
...@@ -818,7 +818,7 @@ bool RFbSetPower( ...@@ -818,7 +818,7 @@ bool RFbSetPower(
if (priv->byCurPwr == byPwr) if (priv->byCurPwr == byPwr)
return true; return true;
bResult = RFbRawSetPower(priv, byPwr, uRATE); bResult = RFbRawSetPower(priv, byPwr, rate);
if (bResult) if (bResult)
priv->byCurPwr = byPwr; priv->byCurPwr = byPwr;
...@@ -842,7 +842,7 @@ bool RFbSetPower( ...@@ -842,7 +842,7 @@ bool RFbSetPower(
bool RFbRawSetPower( bool RFbRawSetPower(
struct vnt_private *priv, struct vnt_private *priv,
unsigned char byPwr, unsigned char byPwr,
unsigned int uRATE unsigned int rate
) )
{ {
bool bResult = true; bool bResult = true;
...@@ -854,7 +854,7 @@ bool RFbRawSetPower( ...@@ -854,7 +854,7 @@ bool RFbRawSetPower(
switch (priv->byRFType) { switch (priv->byRFType) {
case RF_AIROHA: case RF_AIROHA:
bResult &= IFRFbWriteEmbedded(priv, dwAL2230PowerTable[byPwr]); bResult &= IFRFbWriteEmbedded(priv, dwAL2230PowerTable[byPwr]);
if (uRATE <= RATE_11M) if (rate <= RATE_11M)
bResult &= IFRFbWriteEmbedded(priv, 0x0001B400+(BY_AL2230_REG_LEN<<3)+IFREGCTL_REGW); bResult &= IFRFbWriteEmbedded(priv, 0x0001B400+(BY_AL2230_REG_LEN<<3)+IFREGCTL_REGW);
else else
bResult &= IFRFbWriteEmbedded(priv, 0x0005A400+(BY_AL2230_REG_LEN<<3)+IFREGCTL_REGW); bResult &= IFRFbWriteEmbedded(priv, 0x0005A400+(BY_AL2230_REG_LEN<<3)+IFREGCTL_REGW);
...@@ -863,7 +863,7 @@ bool RFbRawSetPower( ...@@ -863,7 +863,7 @@ bool RFbRawSetPower(
case RF_AL2230S: case RF_AL2230S:
bResult &= IFRFbWriteEmbedded(priv, dwAL2230PowerTable[byPwr]); bResult &= IFRFbWriteEmbedded(priv, dwAL2230PowerTable[byPwr]);
if (uRATE <= RATE_11M) { if (rate <= RATE_11M) {
bResult &= IFRFbWriteEmbedded(priv, 0x040C1400+(BY_AL2230_REG_LEN<<3)+IFREGCTL_REGW); bResult &= IFRFbWriteEmbedded(priv, 0x040C1400+(BY_AL2230_REG_LEN<<3)+IFREGCTL_REGW);
bResult &= IFRFbWriteEmbedded(priv, 0x00299B00+(BY_AL2230_REG_LEN<<3)+IFREGCTL_REGW); bResult &= IFRFbWriteEmbedded(priv, 0x00299B00+(BY_AL2230_REG_LEN<<3)+IFREGCTL_REGW);
} else { } else {
......
...@@ -79,11 +79,11 @@ bool RFbInit( ...@@ -79,11 +79,11 @@ bool RFbInit(
struct vnt_private * struct vnt_private *
); );
bool RFvWriteWakeProgSyn(struct vnt_private *, unsigned char byRFType, u16); bool RFvWriteWakeProgSyn(struct vnt_private *, unsigned char byRFType, u16);
bool RFbSetPower(struct vnt_private *, unsigned int uRATE, u16); bool RFbSetPower(struct vnt_private *, unsigned int rate, u16);
bool RFbRawSetPower( bool RFbRawSetPower(
struct vnt_private *, struct vnt_private *,
unsigned char byPwr, unsigned char byPwr,
unsigned int uRATE unsigned int rate
); );
void void
......
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