mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-19 04:37:57 +07:00
mt76: mt7615: use sizeof instead of sizeof_field
It is simpler in this case Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
parent
0f66947bff
commit
b28e22bd9c
@ -88,8 +88,7 @@ static int __mt7615_mcu_msg_send(struct mt7615_dev *dev, struct sk_buff *skb,
|
||||
FIELD_PREP(MT_TXD1_PKT_FMT, pkt_fmt);
|
||||
txd[1] = cpu_to_le32(val);
|
||||
|
||||
mcu_txd->len = cpu_to_le16(skb->len -
|
||||
sizeof_field(struct mt7615_mcu_txd, txd));
|
||||
mcu_txd->len = cpu_to_le16(skb->len - sizeof(mcu_txd->txd));
|
||||
mcu_txd->pq_id = cpu_to_le16(MCU_PQ_ID(MT_TX_PORT_IDX_MCU, q_idx));
|
||||
mcu_txd->pkt_type = MCU_PKT_ID;
|
||||
mcu_txd->seq = seq;
|
||||
|
Loading…
Reference in New Issue
Block a user