All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 4.19] mt76x0: fix remove_interface
@ 2018-09-03 10:26 Stanislaw Gruszka
  2018-09-03 12:48 ` Kalle Valo
  2018-09-17 14:11 ` Kalle Valo
  0 siblings, 2 replies; 7+ messages in thread
From: Stanislaw Gruszka @ 2018-09-03 10:26 UTC (permalink / raw)
  To: linux-wireless; +Cc: Stanislaw Gruszka

We wrongly use wcid_mask instead of vif_mask

Fixes: 95e444098a7b ("mt76x0: main file")
Reported-and-tested-by: Sid Hayn <sidhayn@gmail.com>
Signed-off-by: Stanislaw Gruszka <sgruszka@redhat.com>
---
 drivers/net/wireless/mediatek/mt76/mt76x0/main.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/net/wireless/mediatek/mt76/mt76x0/main.c b/drivers/net/wireless/mediatek/mt76/mt76x0/main.c
index cf6ffb1ba4a2..22bc9d368728 100644
--- a/drivers/net/wireless/mediatek/mt76/mt76x0/main.c
+++ b/drivers/net/wireless/mediatek/mt76/mt76x0/main.c
@@ -77,9 +77,8 @@ static void mt76x0_remove_interface(struct ieee80211_hw *hw,
 {
 	struct mt76x0_dev *dev = hw->priv;
 	struct mt76_vif *mvif = (struct mt76_vif *) vif->drv_priv;
-	unsigned int wcid = mvif->group_wcid.idx;
 
-	dev->wcid_mask[wcid / BITS_PER_LONG] &= ~BIT(wcid % BITS_PER_LONG);
+	dev->vif_mask &= ~BIT(mvif->idx);
 }
 
 static int mt76x0_config(struct ieee80211_hw *hw, u32 changed)
-- 
2.7.5

^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2018-09-17 19:39 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-03 10:26 [PATCH 4.19] mt76x0: fix remove_interface Stanislaw Gruszka
2018-09-03 12:48 ` Kalle Valo
2018-09-03 15:30   ` Sid Hayn
     [not found]   ` <CAM0KTbAgj==H9SkoFF7WeSrh=TJHKFtuubf06JKSKoHoa4xV5w@mail.gmail.com>
2018-09-04 10:23     ` Stanislaw Gruszka
2018-09-04 14:16       ` Sid Hayn
2018-09-11 14:31       ` Kalle Valo
2018-09-17 14:11 ` Kalle Valo

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.