mt7615_mac_init(dev);
        mt7615_phy_init(dev);
        mt7615_mcu_del_wtbl_all(dev);
+
+       if (!mt7615_firmware_offload(dev)) {
+               dev->ops->hw_scan = NULL;
+               dev->ops->cancel_hw_scan = NULL;
+               dev->ops->sched_scan_start = NULL;
+               dev->ops->sched_scan_stop = NULL;
+       }
 }
 
 static int mt7615_init_hardware(struct mt7615_dev *dev)
 
                .sta_remove = mt7615_mac_sta_remove,
                .update_survey = mt7615_update_channel,
        };
+       struct ieee80211_ops *ops;
        struct mt7615_dev *dev;
        struct mt76_dev *mdev;
        int ret;
 
-       mdev = mt76_alloc_device(pdev, sizeof(*dev), &mt7615_ops, &drv_ops);
+       ops = devm_kmemdup(pdev, &mt7615_ops, sizeof(mt7615_ops), GFP_KERNEL);
+       if (!ops)
+               return -ENOMEM;
+
+       mdev = mt76_alloc_device(pdev, sizeof(*dev), ops, &drv_ops);
        if (!mdev)
                return -ENOMEM;
 
        mt76_mmio_init(&dev->mt76, mem_base);
 
        dev->reg_map = map;
+       dev->ops = ops;
        mdev->rev = (mt76_rr(dev, MT_HW_CHIPID) << 16) |
                    (mt76_rr(dev, MT_HW_REV) & 0xff);
        dev_dbg(mdev->dev, "ASIC revision: %04x\n", mdev->rev);