struct ieee80211_hdr *frame = (struct ieee80211_hdr *)skb->data;
        struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)skb->data;
        struct wfx_link_entry *entry = NULL;
-       bool early_data = false;
 
        memset(hdr, 0, sizeof(*hdr));
 
        if (link_id && link_id <= WFX_MAX_STA_IN_AP_MODE) {
                entry = &wvif->link_id_db[link_id - 1];
                entry->timestamp = jiffies;
-               if (entry->status == WFX_LINK_SOFT &&
-                   ieee80211_is_data(frame->frame_control))
-                       early_data = true;
        }
 
        if (arg->status == HIF_STATUS_MICFAILURE)
                        schedule_work(&wvif->update_filtering_work);
                }
        }
-
-       if (early_data) {
-               spin_lock_bh(&wvif->ps_state_lock);
-               /* Double-check status with lock held */
-               if (entry->status == WFX_LINK_SOFT)
-                       skb_queue_tail(&entry->rx_queue, skb);
-               else
-                       ieee80211_rx_irqsafe(wvif->wdev->hw, skb);
-               spin_unlock_bh(&wvif->ps_state_lock);
-       } else {
-               ieee80211_rx_irqsafe(wvif->wdev->hw, skb);
-       }
+       ieee80211_rx_irqsafe(wvif->wdev->hw, skb);
 
        return;
 
 
                entry->status = WFX_LINK_RESERVE;
                ether_addr_copy(entry->mac, mac);
                memset(&entry->buffered, 0, WFX_MAX_TID);
-               skb_queue_head_init(&entry->rx_queue);
                wfx_tx_lock(wvif->wdev);
 
                if (!schedule_work(&wvif->link_id_work))
                                next_gc = min_t(unsigned long, next_gc, ttl);
                        }
                }
-               if (need_reset)
-                       skb_queue_purge(&wvif->link_id_db[i].rx_queue);
        }
        spin_unlock_bh(&wvif->ps_state_lock);
        if (next_gc != -1)
 
        struct wfx_vif *wvif = (struct wfx_vif *) vif->drv_priv;
        struct wfx_sta_priv *sta_priv = (struct wfx_sta_priv *) &sta->drv_priv;
        struct wfx_link_entry *entry;
-       struct sk_buff *skb;
 
        if (wvif->vif->type != NL80211_IFTYPE_AP)
                return 0;
                                        IEEE80211_WMM_IE_STA_QOSINFO_AC_MASK)
                wvif->sta_asleep_mask |= BIT(sta_priv->link_id);
        entry->status = WFX_LINK_HARD;
-       while ((skb = skb_dequeue(&entry->rx_queue)))
-               ieee80211_rx_irqsafe(wdev->hw, skb);
        spin_unlock_bh(&wvif->ps_state_lock);
        return 0;
 }