Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

mt76: mt7615: use sizeof instead of sizeof_field



It is simpler in this case

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