Skip to content

Commit

Permalink
mt76: mt7615: in debugfs queue stats, skip wmm index 3 on mt7663
Browse files Browse the repository at this point in the history
The hardware only supports WMM index 0-2 and registers for index 3 return
bogus data.

Signed-off-by: Felix Fietkau <nbd@nbd.name>
  • Loading branch information
nbd168 committed Dec 3, 2021
1 parent f703084 commit 047b9a9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions mt7615/debugfs.c
Expand Up @@ -359,6 +359,9 @@ mt7615_queues_acq(struct seq_file *s, void *data)
int acs = i / MT7615_MAX_WMM_SETS;
u32 ctrl, val, qlen = 0;

if (wmm_idx == 3 && is_mt7663(&dev->mt76))
continue;

val = mt76_rr(dev, MT_PLE_AC_QEMPTY(acs, wmm_idx));
ctrl = BIT(31) | BIT(15) | (acs << 8);

Expand Down

0 comments on commit 047b9a9

Please sign in to comment.