/* UI BSS List signal strength(in percentage), make it good looking, from 0~100. */
        /* It is assigned to the BSS List in GetValueFromBeaconOrProbeRsp(). */
        if (isCCKrate) {
-#ifdef CONFIG_SKIP_SIGNAL_SCALE_MAPPING
-               pPhyInfo->SignalStrength = (u8)PWDB_ALL;
-#else
                pPhyInfo->signal_strength = (u8)(odm_SignalScaleMapping(pDM_Odm, PWDB_ALL));/* PWDB_ALL; */
-#endif
        } else {
                if (rf_rx_num != 0) {
-#ifdef CONFIG_SKIP_SIGNAL_SCALE_MAPPING
-                       total_rssi /= rf_rx_num;
-                       pPhyInfo->signal_strength = (u8)total_rssi;
-#else
                        pPhyInfo->signal_strength = (u8)(odm_SignalScaleMapping(pDM_Odm, total_rssi /= rf_rx_num));
-#endif
                }
        }
 
 
 {
        s32     SignalPower; /*  in dBm. */
 
-#ifdef CONFIG_SKIP_SIGNAL_SCALE_MAPPING
-       /*  Translate to dBm (x =y-100) */
-       SignalPower = SignalStrengthIndex - 100;
-#else
        /*  Translate to dBm (x = 0.5y-95). */
        SignalPower = (s32)((SignalStrengthIndex + 1) >> 1);
        SignalPower -= 95;
-#endif
 
        return SignalPower;
 }
 
        }
 
 
-       #ifdef CONFIG_SKIP_SIGNAL_SCALE_MAPPING
-       {
-               /* Do signal scale mapping when using percentage as the unit of signal strength, since the scale mapping is skipped in odm */
-
-               struct hal_com_data *pHal = GET_HAL_DATA(padapter);
-
-               iwe.u.qual.level = (u8)odm_SignalScaleMapping(&pHal->odmpriv, ss);
-       }
-       #else
        iwe.u.qual.level = (u8)ss;/*  */
-       #endif
 
        iwe.u.qual.qual = (u8)sq;   /*  signal quality */
 
                piwstats->qual.noise = 0;
                /* DBG_871X("No link  level:%d, qual:%d, noise:%d\n", tmp_level, tmp_qual, tmp_noise); */
        } else {
-               #ifdef CONFIG_SKIP_SIGNAL_SCALE_MAPPING
-               {
-                       /* Do signal scale mapping when using percentage as the unit of signal strength, since the scale mapping is skipped in odm */
-
-                       struct hal_com_data *pHal = GET_HAL_DATA(padapter);
-
-                       tmp_level = (u8)odm_SignalScaleMapping(&pHal->odmpriv, padapter->recvpriv.signal_strength);
-               }
-               #else
                tmp_level = padapter->recvpriv.signal_strength;
-               #endif
-
                tmp_qual = padapter->recvpriv.signal_qual;
                tmp_noise = padapter->recvpriv.noise;
                DBG_871X("level:%d, qual:%d, noise:%d, rssi (%d)\n", tmp_level, tmp_qual, tmp_noise, padapter->recvpriv.rssi);