tx queues are already disabled by mac80211 during scanning or other
off-channel activity. There is no need to repeat the check in mt76,
since scheduled queues are selected by mac80211 as well.
Signed-off-by: Balakrishna Bandi <b.balakrishna@globaledgesoft.com>
Signed-off-by: Felix Fietkau <nbd@nbd.name>
        bool offchannel = hw->conf.flags & IEEE80211_CONF_OFFCHANNEL;
        int timeout = HZ / 5;
 
-       if (offchannel)
-               set_bit(MT76_OFFCHANNEL, &dev->state);
-       else
-               clear_bit(MT76_OFFCHANNEL, &dev->state);
-
        wait_event_timeout(dev->tx_wait, !mt76_has_tx_pending(dev), timeout);
 
        if (dev->drv->update_survey)
 
        MT76_STATE_MCU_RUNNING,
        MT76_SCANNING,
        MT76_RESET,
-       MT76_OFFCHANNEL,
        MT76_REMOVED,
        MT76_READING_STATS,
 };
 
                if (probe)
                        break;
 
-               if (test_bit(MT76_OFFCHANNEL, &dev->state) ||
-                   test_bit(MT76_RESET, &dev->state))
+               if (test_bit(MT76_RESET, &dev->state))
                        return -EBUSY;
 
                skb = mt76_txq_dequeue(dev, mtxq, false);
                if (sq->swq_queued >= 4)
                        break;
 
-               if (test_bit(MT76_OFFCHANNEL, &dev->state) ||
-                   test_bit(MT76_RESET, &dev->state)) {
+               if (test_bit(MT76_RESET, &dev->state)) {
                        ret = -EBUSY;
                        break;
                }