staging: vt6655: Rename dwAL2230PowerTable
array
To align with the kernel coding style, remove the type from the variable name and do not use CamelCase. Fix issue detected by checkpatch.pl: CHECK: Avoid CamelCase: <dwAL2230PowerTable> Signed-off-by: Karolina Drobnik <karolinadrobnik@gmail.com> Link: https://lore.kernel.org/r/69eb06ced0d039b238c1ab6d3fb70b5ee1288a8a.1635171519.git.karolinadrobnik@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
267062a6c9
commit
01701302a2
@ -85,7 +85,7 @@ static const unsigned long al2230_channel_table1[CB_MAX_CHANNEL] = {
|
||||
0x06666100 + (BY_AL2230_REG_LEN << 3) + IFREGCTL_REGW /* channel = 14, Tf = 2412M */
|
||||
};
|
||||
|
||||
static unsigned long dwAL2230PowerTable[AL2230_PWR_IDX_LEN] = {
|
||||
static unsigned long al2230_power_table[AL2230_PWR_IDX_LEN] = {
|
||||
0x04040900 + (BY_AL2230_REG_LEN << 3) + IFREGCTL_REGW,
|
||||
0x04041900 + (BY_AL2230_REG_LEN << 3) + IFREGCTL_REGW,
|
||||
0x04042900 + (BY_AL2230_REG_LEN << 3) + IFREGCTL_REGW,
|
||||
@ -834,7 +834,7 @@ bool RFbRawSetPower(struct vnt_private *priv, unsigned char byPwr,
|
||||
|
||||
switch (priv->byRFType) {
|
||||
case RF_AIROHA:
|
||||
ret &= IFRFbWriteEmbedded(priv, dwAL2230PowerTable[byPwr]);
|
||||
ret &= IFRFbWriteEmbedded(priv, al2230_power_table[byPwr]);
|
||||
if (rate <= RATE_11M)
|
||||
ret &= IFRFbWriteEmbedded(priv, 0x0001B400 + (BY_AL2230_REG_LEN << 3) + IFREGCTL_REGW);
|
||||
else
|
||||
@ -843,7 +843,7 @@ bool RFbRawSetPower(struct vnt_private *priv, unsigned char byPwr,
|
||||
break;
|
||||
|
||||
case RF_AL2230S:
|
||||
ret &= IFRFbWriteEmbedded(priv, dwAL2230PowerTable[byPwr]);
|
||||
ret &= IFRFbWriteEmbedded(priv, al2230_power_table[byPwr]);
|
||||
if (rate <= RATE_11M) {
|
||||
ret &= IFRFbWriteEmbedded(priv, 0x040C1400 + (BY_AL2230_REG_LEN << 3) + IFREGCTL_REGW);
|
||||
ret &= IFRFbWriteEmbedded(priv, 0x00299B00 + (BY_AL2230_REG_LEN << 3) + IFREGCTL_REGW);
|
||||
|
Loading…
Reference in New Issue
Block a user