1
0
Fork 0

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: Lorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: Felix Fietkau <nbd@nbd.name>
alistair/sunxi64-5.4-dsi
Lorenzo Bianconi 2019-05-04 17:29:09 +02:00 committed by Felix Fietkau
parent 5d15f2ea16
commit b28248ec91
1 changed files with 5 additions and 10 deletions

View File

@ -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),
len);
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;