On suspend mac80211 .stop callback is called before .suspend(), so
hw mac is already stopped and we do not have to do this again.
Signed-off-by: Stanislaw Gruszka <sgruszka@redhat.com>
Signed-off-by: Felix Fietkau <nbd@nbd.name>
        struct mt76x02_dev *dev = usb_get_intfdata(usb_intf);
 
        mt76u_stop_queues(&dev->mt76);
-       mt76x0u_mac_stop(dev);
        clear_bit(MT76_STATE_MCU_RUNNING, &dev->mt76.state);
        mt76x0_chip_onoff(dev, false, false);
 
 
        struct mt76x02_dev *dev = usb_get_intfdata(intf);
 
        mt76u_stop_queues(&dev->mt76);
-       mt76x2u_stop_hw(dev);
 
        return 0;
 }