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

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
...@@ -179,19 +179,14 @@ static int mt7615_mcu_init_download(struct mt7615_dev *dev, u32 addr, ...@@ -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, static int mt7615_mcu_send_firmware(struct mt7615_dev *dev, const void *data,
int len) int len)
{ {
struct sk_buff *skb; int ret = 0, cur_len;
int ret = 0;
while (len > 0) { 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); len);
skb = mt7615_mcu_msg_alloc(data, cur_len); ret = __mt76_mcu_send_msg(&dev->mt76, -MCU_CMD_FW_SCATTER,
if (!skb) data, cur_len, false);
return -ENOMEM;
ret = __mt7615_mcu_msg_send(dev, skb, -MCU_CMD_FW_SCATTER,
NULL);
if (ret) if (ret)
break; break;
......
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