{
        struct rtl_priv *rtlpriv = rtl_priv(hw);
        struct rtl_mac *mac = rtl_mac(rtl_priv(hw));
-       u16 bcntime_cfg = 0;
-       u16 bcn_cw = 6, bcn_ifs = 0xf;
        u16 atim_window = 2;
 
        /* ATIM Window (in unit of TU). */
         * other ad hoc STA */
        rtl_write_byte(rtlpriv, BCN_ERR_THRESH, 100);
 
-       /* Beacon Time Configuration */
-       if (mac->opmode == NL80211_IFTYPE_ADHOC)
-               bcntime_cfg |= (bcn_cw << BCN_TCFG_CW_SHIFT);
-
-       /* TODO: bcn_ifs may required to be changed on ASIC */
-       bcntime_cfg |= bcn_ifs << BCN_TCFG_IFS;
-
        /*for beacon changed */
        rtl92s_phy_set_beacon_hwreg(hw, mac->beacon_interval);
 }