Commit b7263a29 authored by Felix Fietkau's avatar Felix Fietkau
Browse files

mt76: mt7615: in debugfs queue stats, skip wmm index 3 on mt7663



The hardware only supports WMM index 0-2 and registers for index 3 return
bogus data.

Signed-off-by: default avatarFelix Fietkau <nbd@nbd.name>
parent e4232f05
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -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);