mirror of https://gitee.com/openkylin/linux.git
staging:rtl8192u: Rename EEPROM_ThermalMeter - Style
Rename EEPROM_ThermalMeter to EEPROM_THERMAL_METER. This change clears the checkpatch issue with CamelCase naming. This change is a coding style change which should not 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
e94d958580
commit
9bfe573611
|
@ -2434,7 +2434,7 @@ static int rtl8192_read_eeprom_info(struct net_device *dev)
|
|||
RT_TRACE(COMP_EPROM, "TxPowerDiff:%d\n", priv->EEPROMTxPowerDiff);
|
||||
/* read ThermalMeter from EEPROM */
|
||||
if (bLoad_From_EEPOM) {
|
||||
ret = eprom_read(dev, (EEPROM_ThermalMeter >> 1));
|
||||
ret = eprom_read(dev, (EEPROM_THERMAL_METER >> 1));
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
priv->EEPROMThermalMeter = (u8)((u16)ret & 0x00ff);
|
||||
|
|
|
@ -38,7 +38,7 @@
|
|||
#define EEPROM_NODE_ADDRESS_BYTE_0 0x0C
|
||||
|
||||
#define EEPROM_TX_POWER_DIFF 0x1F
|
||||
#define EEPROM_ThermalMeter 0x20
|
||||
#define EEPROM_THERMAL_METER 0x20
|
||||
#define EEPROM_PwDiff 0x21 //0x21
|
||||
#define EEPROM_CrystalCap 0x22 //0x22
|
||||
|
||||
|
|
Loading…
Reference in New Issue