staging: rtl8188eu: Rework function PHY_LCCalibrate_8188E()
authornavin patidar <navin.patidar@gmail.com>
Sun, 7 Sep 2014 11:08:00 +0000 (16:38 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 8 Sep 2014 21:05:21 +0000 (14:05 -0700)
Rename CamelCase local variables and function name.
Remove unnecessary debugging messages.

Signed-off-by: navin patidar <navin.patidar@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8188eu/hal/HalPhyRf_8188e.c
drivers/staging/rtl8188eu/hal/usb_halinit.c
drivers/staging/rtl8188eu/include/HalPhyRf_8188e.h

index 93cda39ebf2ba1acee67dc2415e7898b2ec11a05..e2c9b548ef3536c1f7765d438fcada97c4625ba7 100644 (file)
@@ -234,7 +234,7 @@ void rtl88eu_dm_txpower_tracking_callback_thermalmeter(struct adapter *adapt)
                /* Delta temperature is equal to or larger than 20 centigrade.*/
                if ((delta_lck >= 8)) {
                        dm_odm->RFCalibrateInfo.ThermalValue_LCK = thermal_val;
-                       PHY_LCCalibrate_8188E(adapt);
+                       rtl88eu_phy_lc_calibrate(adapt);
                }
 
                if (delta > 0 && dm_odm->RFCalibrateInfo.TxPowerTrackControl) {
@@ -1179,16 +1179,15 @@ void rtl88eu_phy_iq_calibrate(struct adapter *adapt, bool recovery)
                            dm_odm->RFCalibrateInfo.IQK_BB_backup_recover, 9);
 }
 
-void PHY_LCCalibrate_8188E(struct adapter *adapt)
+void rtl88eu_phy_lc_calibrate(struct adapter *adapt)
 {
        bool singletone = false, carrier_sup = false;
        u32 timeout = 2000, timecount = 0;
-       struct hal_data_8188e *pHalData = GET_HAL_DATA(adapt);
-       struct odm_dm_struct *dm_odm = &pHalData->odmpriv;
+       struct hal_data_8188e *hal_data = GET_HAL_DATA(adapt);
+       struct odm_dm_struct *dm_odm = &hal_data->odmpriv;
 
        if (!(dm_odm->SupportAbility & ODM_RF_CALIBRATION))
                return;
-       /*  20120213<Kordan> Turn on when continuous Tx to pass lab testing. (required by Edlu) */
        if (singletone || carrier_sup)
                return;
 
@@ -1202,14 +1201,11 @@ void PHY_LCCalibrate_8188E(struct adapter *adapt)
        if (dm_odm->RFType == ODM_2T2R) {
                phy_lc_calibrate(adapt, true);
        } else {
-               /*  For 88C 1T1R */
+               /* For 88C 1T1R */
                phy_lc_calibrate(adapt, false);
        }
 
        dm_odm->RFCalibrateInfo.bLCKInProgress = false;
-
-       ODM_RT_TRACE(dm_odm, ODM_COMP_CALIBRATION, ODM_DBG_LOUD,
-                    ("LCK:Finish!!!interface %d\n", dm_odm->InterfaceIndex));
 }
 
 static void phy_setrfpathswitch_8188e(struct adapter *adapt, bool main, bool is2t)
index 45655b16b30ea462030449a1394ea1e412265800..c4c00872464a93e6b2a45112ff2533359480ed94 100644 (file)
@@ -701,7 +701,7 @@ static u32 rtl8188eu_hal_init(struct adapter *Adapter)
                }
 
                ODM_TXPowerTrackingCheck(&haldata->odmpriv);
-               PHY_LCCalibrate_8188E(Adapter);
+               rtl88eu_phy_lc_calibrate(Adapter);
 
                goto exit;
        }
@@ -893,7 +893,7 @@ HAL_INIT_PROFILE_TAG(HAL_INIT_STAGES_PW_TRACK);
                ODM_TXPowerTrackingCheck(&haldata->odmpriv);
 
 HAL_INIT_PROFILE_TAG(HAL_INIT_STAGES_LCK);
-                       PHY_LCCalibrate_8188E(Adapter);
+                       rtl88eu_phy_lc_calibrate(Adapter);
        }
 
 /* HAL_INIT_PROFILE_TAG(HAL_INIT_STAGES_INIT_PABIAS); */
index 9fbfe77c3d4a4a2ddd1824a38c4e9df67a0db035..6f5a66df788f955271eb421d814a2b02db10dabf 100644 (file)
@@ -36,9 +36,7 @@ void rtl88eu_dm_txpower_track_adjust(struct odm_dm_struct *dm_odm,
 
 void rtl88eu_dm_txpower_tracking_callback_thermalmeter(struct adapter *adapt);
 void rtl88eu_phy_iq_calibrate(struct adapter *adapter, bool recovery);
-
-/*  LC calibrate */
-void PHY_LCCalibrate_8188E(struct adapter *pAdapter);
+void rtl88eu_phy_lc_calibrate(struct adapter *adapter);
 
 /*  AP calibrate */
 void PHY_DigitalPredistortion_8188E(struct adapter *pAdapter);
This page took 0.028232 seconds and 5 git commands to generate.