blob: 9e4c95016bd5ce84ca195673eb154a38b7b1eb97 [file] [log] [blame]
developerbf24a8a2022-11-30 14:52:20 +08001From 5d6beb19bab77695d83719719a179437f7674806 Mon Sep 17 00:00:00 2001
developer1d16a302022-04-28 16:35:54 +08002From: Peter Chiu <chui-hao.chiu@mediatek.com>
3Date: Sun, 24 Apr 2022 10:07:00 +0800
developerbf24a8a2022-11-30 14:52:20 +08004Subject: [PATCH 1116/1128] mt76: mt7915: init rssi in WTBL when add station
developer1d16a302022-04-28 16:35:54 +08005
6---
developer071927d2022-08-31 20:39:29 +08007 mt7915/main.c | 4 ++++
developer1d16a302022-04-28 16:35:54 +08008 1 file changed, 4 insertions(+)
9
10diff --git a/mt7915/main.c b/mt7915/main.c
developer144824b2022-11-25 21:27:43 +080011index e84d6132..9180689e 100644
developer1d16a302022-04-28 16:35:54 +080012--- a/mt7915/main.c
13+++ b/mt7915/main.c
developer144824b2022-11-25 21:27:43 +080014@@ -666,6 +666,7 @@ int mt7915_mac_sta_add(struct mt76_dev *mdev, struct ieee80211_vif *vif,
developer1d16a302022-04-28 16:35:54 +080015 struct mt7915_phy *phy;
16 #endif
17 int ret, idx;
18+ u32 addr;
19
20 idx = mt76_wcid_alloc(dev->mt76.wcid_mask, MT7915_WTBL_STA);
21 if (idx < 0)
developer144824b2022-11-25 21:27:43 +080022@@ -689,6 +690,9 @@ int mt7915_mac_sta_add(struct mt76_dev *mdev, struct ieee80211_vif *vif,
developer1d16a302022-04-28 16:35:54 +080023 if (ret)
24 return ret;
25
26+ addr = mt7915_mac_wtbl_lmac_addr(dev, msta->wcid.idx, 30);
27+ mt76_rmw_field(dev, addr, GENMASK(7, 0), 0xa0);
28+
29 #ifdef CONFIG_MTK_VENDOR
30 mt7915_vendor_amnt_sta_remove(mvif->phy, sta);
31 #endif
32--
developerbf24a8a2022-11-30 14:52:20 +0800332.36.1
developer1d16a302022-04-28 16:35:54 +080034