Commit 53d12b55 authored by Lorenzo Bianconi's avatar Lorenzo Bianconi Committed by Felix Fietkau

mt76: mt7915: improve code readability for xmit-queue handler

Improve xmit-queue debugfs node readability for mt7915
Signed-off-by: default avatarLorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: default avatarFelix Fietkau <nbd@nbd.name>
parent 115a2d73
...@@ -378,14 +378,14 @@ mt7915_xmit_queues_show(struct seq_file *file, void *data) ...@@ -378,14 +378,14 @@ mt7915_xmit_queues_show(struct seq_file *file, void *data)
}; };
int i; int i;
seq_puts(file, " queue | hw-queued | head | tail |\n");
for (i = 0; i < ARRAY_SIZE(queue_map); i++) { for (i = 0; i < ARRAY_SIZE(queue_map); i++) {
struct mt76_queue *q = queue_map[i].q; struct mt76_queue *q = queue_map[i].q;
if (!q) if (!q)
continue; continue;
seq_printf(file, seq_printf(file, " %s | %9d | %9d | %9d |\n",
"%s: queued=%d head=%d tail=%d\n",
queue_map[i].queue, q->queued, q->head, queue_map[i].queue, q->queued, q->head,
q->tail); q->tail);
} }
......
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