mt76x0: remove vif_mask
authorStanislaw Gruszka <sgruszka@redhat.com>
Tue, 4 Sep 2018 14:41:04 +0000 (16:41 +0200)
committerFelix Fietkau <nbd@nbd.name>
Wed, 19 Sep 2018 10:29:12 +0000 (12:29 +0200)
Make remove_interface more similar to mt76x2.

Signed-off-by: Stanislaw Gruszka <sgruszka@redhat.com>
Signed-off-by: Felix Fietkau <nbd@nbd.name>
drivers/net/wireless/mediatek/mt76/mt76x0/main.c
drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0.h

index f87103a..a818a47 100644 (file)
@@ -56,14 +56,7 @@ static int mt76x0_add_interface(struct ieee80211_hw *hw,
                                 struct ieee80211_vif *vif)
 {
        struct mt76x0_dev *dev = hw->priv;
-       unsigned int idx;
-
-       idx = ffs(~dev->vif_mask);
-       if (!idx || idx > 8)
-               return -ENOSPC;
-
-       idx--;
-       dev->vif_mask |= BIT(idx);
+       unsigned int idx = 0;
 
        mt76x02_vif_init(&dev->mt76, vif, idx);
        return 0;
@@ -73,9 +66,7 @@ static void mt76x0_remove_interface(struct ieee80211_hw *hw,
                                     struct ieee80211_vif *vif)
 {
        struct mt76x0_dev *dev = hw->priv;
-       struct mt76x02_vif *mvif = (struct mt76x02_vif *) vif->drv_priv;
 
-       dev->vif_mask &= ~BIT(mvif->idx);
        mt76_txq_remove(&dev->mt76, vif->txq);
 }
 
index e65e6c0..c366973 100644 (file)
@@ -134,8 +134,6 @@ struct mt76x0_dev {
        u8 in_ep[__MT_EP_IN_MAX];
        u16 in_max_packet;
 
-       unsigned long vif_mask;
-
        struct delayed_work cal_work;
        struct delayed_work mac_work;