Commit 4812e0bc authored by Ryder Lee's avatar Ryder Lee Committed by Felix Fietkau
Browse files

mt76: mt7915: use BIT_ULL for omac_idx



The omac_idx variable is u64 so we should use the 64-bit BIT_ULL().

Signed-off-by: default avatarRyder Lee <ryder.lee@mediatek.com>
Signed-off-by: default avatarFelix Fietkau <nbd@nbd.name>
parent 078b6d21
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);