staging: r8188eu: remove a constant variable
authorMartin Kaiser <martin@kaiser.cx>
Mon, 10 Jan 2022 12:46:31 +0000 (13:46 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 25 Jan 2022 15:18:42 +0000 (16:18 +0100)
The eRFPath variable in phy_RF6052_Config_ParaFile is always 0.

Remove the variable and use 0 directly. (enum rf_radio_path)eRFPath can
be replaced with RF_PATH_A, which is defined as 0.

Signed-off-by: Martin Kaiser <martin@kaiser.cx>
Link: https://lore.kernel.org/r/20220110124638.6909-3-martin@kaiser.cx
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/r8188eu/hal/rtl8188e_rf6052.c

index 7e4744989a66dda88dfdfa19a2c7c2dc67742970..7474db05e8af3e84e8c4c07dd15b693ec80271a8 100644 (file)
@@ -374,12 +374,11 @@ static int phy_RF6052_Config_ParaFile(struct adapter *Adapter)
        struct bb_reg_def *pPhyReg;
        struct hal_data_8188e *pHalData = &Adapter->haldata;
        u32 u4RegValue = 0;
-       u8 eRFPath = 0;
        int rtStatus = _SUCCESS;
 
        /* Initialize RF */
 
-       pPhyReg = &pHalData->PHYRegDef[eRFPath];
+       pPhyReg = &pHalData->PHYRegDef[0];
 
        /*----Store original RFENV control type----*/
        u4RegValue = rtl8188e_PHY_QueryBBReg(Adapter, pPhyReg->rfintfs, bRFSI_RFENV);
@@ -400,7 +399,7 @@ static int phy_RF6052_Config_ParaFile(struct adapter *Adapter)
        udelay(1);/* PlatformStallExecution(1); */
 
        /*----Initialize RF fom connfiguration file----*/
-       if (HAL_STATUS_FAILURE == ODM_ConfigRFWithHeaderFile(&pHalData->odmpriv, (enum rf_radio_path)eRFPath, (enum rf_radio_path)eRFPath))
+       if (HAL_STATUS_FAILURE == ODM_ConfigRFWithHeaderFile(&pHalData->odmpriv, RF_PATH_A, RF_PATH_A))
                rtStatus = _FAIL;
 
        /*----Restore RFENV control type----*/;