mt76: mt7915: use BIT_ULL for omac_idx
authorRyder Lee <ryder.lee@mediatek.com>
Thu, 29 Oct 2020 17:11:15 +0000 (01:11 +0800)
committerFelix Fietkau <nbd@nbd.name>
Fri, 4 Dec 2020 13:31:13 +0000 (14:31 +0100)
The omac_idx variable is u64 so we should use the 64-bit BIT_ULL().

Signed-off-by: Ryder Lee <ryder.lee@mediatek.com>
Signed-off-by: Felix Fietkau <nbd@nbd.name>
drivers/net/wireless/mediatek/mt76/mt7915/main.c

index 92f860b..c0361c2 100644 (file)
@@ -240,7 +240,7 @@ static void mt7915_remove_interface(struct ieee80211_hw *hw,
 
        mutex_lock(&dev->mt76.mutex);
        phy->mt76->vif_mask &= ~BIT(mvif->idx);
-       phy->omac_mask &= ~BIT(mvif->omac_idx);
+       phy->omac_mask &= ~BIT_ULL(mvif->omac_idx);
        mutex_unlock(&dev->mt76.mutex);
 
        spin_lock_bh(&dev->sta_poll_lock);