staging: rtl8188eu: remove struct eeprom_priv's EepromOrEfuse
authorMartin Kaiser <martin@kaiser.cx>
Sun, 18 Jul 2021 17:36:05 +0000 (19:36 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 21 Jul 2021 08:31:22 +0000 (10:31 +0200)
This setting is used only in one place. There's no need to store it
in a global struct.

While at it, merge the two-line Hal_InitPGData88E function and its
only caller.

Signed-off-by: Martin Kaiser <martin@kaiser.cx>
Link: https://lore.kernel.org/r/20210718173610.894-5-martin@kaiser.cx
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8188eu/hal/rtl8188e_hal_init.c
drivers/staging/rtl8188eu/hal/usb_halinit.c
drivers/staging/rtl8188eu/include/hal_intf.h
drivers/staging/rtl8188eu/include/rtl8188e_hal.h

index 1c63658..2afef26 100644 (file)
@@ -228,12 +228,6 @@ s32 InitLLTTable(struct adapter *padapter, u8 txpktbuf_bndy)
        return status;
 }
 
-void Hal_InitPGData88E(struct adapter *padapter)
-{
-       if (!is_boot_from_eeprom(padapter))
-               EFUSE_ShadowMapUpdate(padapter);
-}
-
 void Hal_EfuseParseIDCode88E(struct adapter *padapter, u8 *hwinfo)
 {
        struct eeprom_priv *pEEPROM = GET_EEPROM_EFUSE_PRIV(padapter);
index b53d1c2..1f3c10a 100644 (file)
@@ -995,10 +995,11 @@ void rtw_hal_read_chip_info(struct adapter *Adapter)
        struct eeprom_priv *eeprom = GET_EEPROM_EFUSE_PRIV(Adapter);
        u8 eeValue = usb_read8(Adapter, REG_9346CR);
 
-       eeprom->EepromOrEfuse = (eeValue & BOOT_FROM_EEPROM) ? true : false;
        eeprom->bautoload_fail_flag = (eeValue & EEPROM_EN) ? false : true;
 
-       Hal_InitPGData88E(Adapter);
+       if (eeValue & BOOT_FROM_EEPROM)
+               EFUSE_ShadowMapUpdate(Adapter);
+
        readAdapterInfo_8188EU(Adapter);
 }
 
index c74249f..4d4e0a2 100644 (file)
@@ -131,8 +131,6 @@ enum hardware_type {
 
 #define GET_EEPROM_EFUSE_PRIV(adapter) (&adapter->eeprompriv)
 
-#define is_boot_from_eeprom(adapter) (adapter->eeprompriv.EepromOrEfuse)
-
 void UpdateHalRAMask8188EUsb(struct adapter *adapt, u32 mac_id, u8 rssi_level);
 u32 rtl8188eu_hal_deinit(struct adapter *Adapter);
 u32 rtl8188eu_hal_init(struct adapter *Adapter);
index 2c16d3f..f585cbe 100644 (file)
@@ -196,8 +196,6 @@ struct hal_data_8188e {
        u8      bTXPowerDataReadFromEEPORM;
        u8      EEPROMThermalMeter;
 
-       bool    EepromOrEfuse;
-
        u8      Index24G_CCK_Base[MAX_RF_PATH][CHANNEL_MAX_NUMBER];
        u8      Index24G_BW40_Base[MAX_RF_PATH][CHANNEL_MAX_NUMBER];
        /* If only one tx, only BW20 and OFDM are used. */
@@ -298,7 +296,6 @@ void rtl8188e_InitializeFirmwareVars(struct adapter *padapter);
 s32 InitLLTTable(struct adapter *padapter, u8 txpktbuf_bndy);
 
 /*  EFuse */
-void Hal_InitPGData88E(struct adapter *padapter);
 void Hal_EfuseParseIDCode88E(struct adapter *padapter, u8 *hwinfo);
 void Hal_ReadTxPowerInfo88E(struct adapter *padapter, u8 *hwinfo,
                            bool AutoLoadFail);