staging:rtl8192u: Rename EEPROM_TxPwIndex_OFDM_24G - Style
Rename the constant EEPROM_TxPwIndex_OFDM_24G to EEPROM_TX_PW_INDEX_OFDM_24G, this change clears the checkpatch issue with CamelCase naming. This change is a coding style change which should have no impact on runtime code execution. Signed-off-by: John Whitmore <johnfwhitmore@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
2b29377bda
commit
e9034dd6e1
|
@ -2483,10 +2483,10 @@ static int rtl8192_read_eeprom_info(struct net_device *dev)
|
|||
RT_TRACE(COMP_EPROM, "CCK Tx Power Levl: 0x%02x\n", priv->EEPROMTxPowerLevelCCK);
|
||||
for (i = 0; i < 3; i++) {
|
||||
if (bLoad_From_EEPOM) {
|
||||
ret = eprom_read(dev, (EEPROM_TxPwIndex_OFDM_24G + i) >> 1);
|
||||
ret = eprom_read(dev, (EEPROM_TX_PW_INDEX_OFDM_24G + i) >> 1);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
if (((EEPROM_TxPwIndex_OFDM_24G + i) % 2) == 0)
|
||||
if (((EEPROM_TX_PW_INDEX_OFDM_24G + i) % 2) == 0)
|
||||
tmpValue = (u16)ret & 0x00ff;
|
||||
else
|
||||
tmpValue = ((u16)ret & 0xff00) >> 8;
|
||||
|
|
|
@ -43,7 +43,7 @@
|
|||
#define EEPROM_CRYSTAL_CAP 0x22 //0x22
|
||||
|
||||
#define EEPROM_TX_PW_INDEX_CCK 0x23 //0x23
|
||||
#define EEPROM_TxPwIndex_OFDM_24G 0x24 //0x24~0x26
|
||||
#define EEPROM_TX_PW_INDEX_OFDM_24G 0x24 //0x24~0x26
|
||||
#define EEPROM_TxPwIndex_CCK_V1 0x29 //0x29~0x2B
|
||||
#define EEPROM_TX_PW_INDEX_OFDM_24G_V1 0x2C //0x2C~0x2E
|
||||
#define EEPROM_TxPwIndex_Ver 0x27 //0x27
|
||||
|
|
Loading…
Reference in New Issue