Commit b28248ec authored by Lorenzo Bianconi's avatar Lorenzo Bianconi Committed by Felix Fietkau
Browse files

mt7615: mcu: run __mt76_mcu_send_msg in mt7615_mcu_send_firmware



Run __mt76_mcu_send_msg instead of __mt7615_mcu_msg_send and remove
duplicated code.

Signed-off-by: default avatarLorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: default avatarFelix Fietkau <nbd@nbd.name>
parent 5d15f2ea
Loading
Loading
Loading
Loading
+5 −10
Original line number Diff line number Diff line
@@ -179,19 +179,14 @@ static int mt7615_mcu_init_download(struct mt7615_dev *dev, u32 addr,
static int mt7615_mcu_send_firmware(struct mt7615_dev *dev, const void *data,
				    int len)
{
	struct sk_buff *skb;
	int ret = 0;
	int ret = 0, cur_len;

	while (len > 0) {
		int cur_len = min_t(int, 4096 - sizeof(struct mt7615_mcu_txd),
		cur_len = min_t(int, 4096 - sizeof(struct mt7615_mcu_txd),
				len);

		skb = mt7615_mcu_msg_alloc(data, cur_len);
		if (!skb)
			return -ENOMEM;

		ret = __mt7615_mcu_msg_send(dev, skb, -MCU_CMD_FW_SCATTER,
					    NULL);
		ret = __mt76_mcu_send_msg(&dev->mt76, -MCU_CMD_FW_SCATTER,
					  data, cur_len, false);
		if (ret)
			break;