mirror of
https://github.com/torvalds/linux.git
synced 2026-05-27 08:33:17 +02:00
mt76: remove q->qid
It is no longer used Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
parent
1d5af0acac
commit
bceb8b8ded
|
|
@ -185,7 +185,6 @@ struct mt76_queue {
|
|||
|
||||
u8 buf_offset;
|
||||
u8 hw_idx;
|
||||
u8 qid;
|
||||
u8 flags;
|
||||
|
||||
u32 wed_regs;
|
||||
|
|
@ -977,7 +976,6 @@ static inline int mt76_init_tx_queue(struct mt76_phy *phy, int qid, int idx,
|
|||
if (IS_ERR(q))
|
||||
return PTR_ERR(q);
|
||||
|
||||
q->qid = qid;
|
||||
phy->q_tx[qid] = q;
|
||||
|
||||
return 0;
|
||||
|
|
@ -992,7 +990,6 @@ static inline int mt76_init_mcu_queue(struct mt76_dev *dev, int qid, int idx,
|
|||
if (IS_ERR(q))
|
||||
return PTR_ERR(q);
|
||||
|
||||
q->qid = __MT_TXQ_MAX + qid;
|
||||
dev->q_mcu[qid] = q;
|
||||
|
||||
return 0;
|
||||
|
|
|
|||
|
|
@ -350,7 +350,6 @@ int mt76s_alloc_tx(struct mt76_dev *dev)
|
|||
if (IS_ERR(q))
|
||||
return PTR_ERR(q);
|
||||
|
||||
q->qid = i;
|
||||
dev->phy.q_tx[i] = q;
|
||||
}
|
||||
|
||||
|
|
@ -358,7 +357,6 @@ int mt76s_alloc_tx(struct mt76_dev *dev)
|
|||
if (IS_ERR(q))
|
||||
return PTR_ERR(q);
|
||||
|
||||
q->qid = MT_MCUQ_WM;
|
||||
dev->q_mcu[MT_MCUQ_WM] = q;
|
||||
|
||||
return 0;
|
||||
|
|
|
|||
|
|
@ -937,7 +937,6 @@ static int mt76u_alloc_tx(struct mt76_dev *dev)
|
|||
|
||||
spin_lock_init(&q->lock);
|
||||
q->hw_idx = mt76u_ac_to_hwq(dev, i);
|
||||
q->qid = i;
|
||||
|
||||
dev->phy.q_tx[i] = q;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user