Commit 0d733327 authored by Felix Fietkau's avatar Felix Fietkau

mt76: mt7915: drop the use of repeater entries for station interfaces

There are firmware or hardware issues, which are currently causing tx hangs
when attempting to use these interfaces
Signed-off-by: default avatarFelix Fietkau <nbd@nbd.name>
parent 1f9dde02
...@@ -139,12 +139,6 @@ static int get_omac_idx(enum nl80211_iftype type, u64 mask) ...@@ -139,12 +139,6 @@ static int get_omac_idx(enum nl80211_iftype type, u64 mask)
if (type != NL80211_IFTYPE_STATION) if (type != NL80211_IFTYPE_STATION)
break; break;
/* next, try to find a free repeater entry for the sta */
i = get_free_idx(mask >> REPEATER_BSSID_START, 0,
REPEATER_BSSID_MAX - REPEATER_BSSID_START);
if (i)
return i + 32 - 1;
i = get_free_idx(mask, EXT_BSSID_1, EXT_BSSID_MAX); i = get_free_idx(mask, EXT_BSSID_1, EXT_BSSID_MAX);
if (i) if (i)
return i - 1; return i - 1;
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
#include "../mt76.h" #include "../mt76.h"
#include "regs.h" #include "regs.h"
#define MT7915_MAX_INTERFACES 32 #define MT7915_MAX_INTERFACES 19
#define MT7915_MAX_WMM_SETS 4 #define MT7915_MAX_WMM_SETS 4
#define MT7915_WTBL_SIZE 288 #define MT7915_WTBL_SIZE 288
#define MT7915_WTBL_RESERVED (MT7915_WTBL_SIZE - 1) #define MT7915_WTBL_RESERVED (MT7915_WTBL_SIZE - 1)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment