diff options
author | navin patidar <navin.patidar@gmail.com> | 2014-09-07 16:37:55 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-09-08 14:05:20 -0700 |
commit | 00c185e76db802a5bbf77c1d50d513a025538c97 (patch) | |
tree | 77f99ddae8ce2e36811ee2f77ec165be7b81f7f5 | |
parent | 3dec6aa2a17a2f47b155e331a153d6d69e7e2929 (diff) |
staging: rtl8188eu: Rework function _PHY_PIModeSwitch()
Rename CamelCase local variables and function name.
Remove unnecessary debugging messages and local variables.
Signed-off-by: navin patidar <navin.patidar@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/rtl8188eu/hal/HalPhyRf_8188e.c | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/drivers/staging/rtl8188eu/hal/HalPhyRf_8188e.c b/drivers/staging/rtl8188eu/hal/HalPhyRf_8188e.c index c08042a163b7..7ae715c74a7b 100644 --- a/drivers/staging/rtl8188eu/hal/HalPhyRf_8188e.c +++ b/drivers/staging/rtl8188eu/hal/HalPhyRf_8188e.c @@ -704,18 +704,11 @@ static void path_a_standby(struct adapter *adapt) phy_set_bb_reg(adapt, rFPGA0_IQK, bMaskDWord, 0x80800000); } -static void _PHY_PIModeSwitch( - struct adapter *adapt, - bool PIMode - ) +static void pi_mode_switch(struct adapter *adapt, bool pi_mode) { u32 mode; - struct hal_data_8188e *pHalData = GET_HAL_DATA(adapt); - struct odm_dm_struct *dm_odm = &pHalData->odmpriv; - - ODM_RT_TRACE(dm_odm, ODM_COMP_CALIBRATION, ODM_DBG_LOUD, ("BB Switch to %s mode!\n", (PIMode ? "PI" : "SI"))); - mode = PIMode ? 0x01000100 : 0x01000000; + mode = pi_mode ? 0x01000100 : 0x01000000; phy_set_bb_reg(adapt, rFPGA0_XA_HSSIParameter1, bMaskDWord, mode); phy_set_bb_reg(adapt, rFPGA0_XB_HSSIParameter1, bMaskDWord, mode); } @@ -870,7 +863,7 @@ static void phy_IQCalibrate_8188E(struct adapter *adapt, s32 result[][8], u8 t, if (!dm_odm->RFCalibrateInfo.bRfPiEnable) { /* Switch BB to PI mode to do IQ Calibration. */ - _PHY_PIModeSwitch(adapt, true); + pi_mode_switch(adapt, true); } /* BB setting */ @@ -965,7 +958,7 @@ static void phy_IQCalibrate_8188E(struct adapter *adapt, s32 result[][8], u8 t, if (t != 0) { if (!dm_odm->RFCalibrateInfo.bRfPiEnable) { /* Switch back BB to SI mode after finish IQ Calibration. */ - _PHY_PIModeSwitch(adapt, false); + pi_mode_switch(adapt, false); } /* Reload ADDA power saving parameters */ |