/*  <Roger_Notes> Current Channel will be updated again later. */
        pHalData->CurrentChannel = 6;
 
-#if (HAL_MAC_ENABLE == 1)
        ret = PHY_MACConfig8723B(padapter);
        if (ret != _SUCCESS)
                return ret;
-#endif
        /*  */
        /* d. Initialize BB related configurations. */
        /*  */
-#if (HAL_BB_ENABLE == 1)
        ret = PHY_BBConfig8723B(padapter);
        if (ret != _SUCCESS)
                return ret;
-#endif
 
        /*  If RF is on, we need to init RF. Otherwise, skip the procedure. */
        /*  We need to follow SU method to change the RF cfg.txt. Default disable RF TX/RX mode. */
        /* if (pHalData->eRFPowerState == eRfOn) */
        {
-#if (HAL_RF_ENABLE == 1)
                ret = PHY_RFConfig8723B(padapter);
                if (ret != _SUCCESS)
                        return ret;
-#endif
        }
 
        /*  */
 
  ******************************************************************************/
 #ifndef __HAL_PHY_H__
 #define __HAL_PHY_H__
-
-
-/*  FPGA_PHY and ASIC */
-#define        HAL_FW_ENABLE   1
-#define        HAL_MAC_ENABLE  1
-#define        HAL_BB_ENABLE   1
-#define        HAL_RF_ENABLE   1
-
 /*  */
 /*  Antenna detection method, i.e., using single tone detection or RSSI reported from each antenna detected. */
 /*  Added by Roger, 2013.05.22. */