struct ieee80211_sta *sta, u16 tid)
 {
        struct rtl_priv *rtlpriv = rtl_priv(hw);
-       struct rtl_tid_data *tid_data;
        struct rtl_sta_info *sta_entry = NULL;
 
        if (!sta)
                return -EINVAL;
 
        sta_entry = (struct rtl_sta_info *)sta->drv_priv;
-       tid_data = &sta_entry->tids[tid];
        sta_entry->tids[tid].agg.agg_state = RTL_AGG_STOP;
 
        ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
        struct rtl_beacon_keys bcn_key = {};
        struct rtl_beacon_keys *cur_bcn_key;
        u8 *ht_cap;
-       u8 ht_cap_len;
        u8 *ht_oper;
-       u8 ht_oper_len;
        u8 *ds_param;
-       u8 ds_param_len;
 
        if (mac->opmode != NL80211_IFTYPE_STATION)
                return false;
        /***** Parsing DS Param IE ******/
        ds_param = rtl_find_ie(data, len - FCS_LEN, WLAN_EID_DS_PARAMS);
 
-       if (ds_param && !(ds_param[1] < sizeof(*ds_param))) {
-               ds_param_len = ds_param[1];
+       if (ds_param && !(ds_param[1] < sizeof(*ds_param)))
                bcn_key.bcn_channel = ds_param[2];
-       } else {
+       else
                ds_param = NULL;
-       }
 
        /***** Parsing HT Cap. IE ******/
        ht_cap = rtl_find_ie(data, len - FCS_LEN, WLAN_EID_HT_CAPABILITY);
 
        if (ht_cap && !(ht_cap[1] < sizeof(*ht_cap))) {
-               ht_cap_len = ht_cap[1];
                ht_cap_ie = (struct ieee80211_ht_cap *)&ht_cap[2];
                bcn_key.ht_cap_info = ht_cap_ie->cap_info;
        } else  {
        /***** Parsing HT Info. IE ******/
        ht_oper = rtl_find_ie(data, len - FCS_LEN, WLAN_EID_HT_OPERATION);
 
-       if (ht_oper && !(ht_oper[1] < sizeof(*ht_oper))) {
-               ht_oper_len = ht_oper[1];
+       if (ht_oper && !(ht_oper[1] < sizeof(*ht_oper)))
                ht_oper_ie = (struct ieee80211_ht_operation *)&ht_oper[2];
-       } else {
+       else
                ht_oper = NULL;
-       }
 
        /* update bcn_key */