Commit 458417ef authored by Shen Lichuan's avatar Shen Lichuan Committed by Felix Fietkau
Browse files

wifi: mt76: mt7615: Convert comma to semicolon



To ensure code clarity and prevent potential errors, it's advisable
to employ the ';' as a statement separator, except when ',' are
intentionally used for specific purposes.

Signed-off-by: default avatarShen Lichuan <shenlichuan@vivo.com>
Reviewed-by: default avatarAngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
Link: https://patch.msgid.link/20240911034243.31596-1-shenlichuan@vivo.com


Signed-off-by: default avatarFelix Fietkau <nbd@nbd.name>
parent 08fa656c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1700,7 +1700,7 @@ int mt7615_mcu_init(struct mt7615_dev *dev)
	};
	int ret;

	dev->mt76.mcu_ops = &mt7615_mcu_ops,
	dev->mt76.mcu_ops = &mt7615_mcu_ops;

	ret = mt7615_mcu_drv_pmctrl(dev);
	if (ret)
+1 −1
Original line number Diff line number Diff line
@@ -147,7 +147,7 @@ int mt7663s_mcu_init(struct mt7615_dev *dev)
	if (ret)
		return ret;

	dev->mt76.mcu_ops = &mt7663s_mcu_ops,
	dev->mt76.mcu_ops = &mt7663s_mcu_ops;

	ret = mt76_get_field(dev, MT_CONN_ON_MISC, MT_TOP_MISC2_FW_N9_RDY);
	if (ret) {
+1 −1
Original line number Diff line number Diff line
@@ -72,7 +72,7 @@ int mt7663u_mcu_init(struct mt7615_dev *dev)
	};
	int ret;

	dev->mt76.mcu_ops = &mt7663u_mcu_ops,
	dev->mt76.mcu_ops = &mt7663u_mcu_ops;

	mt76_set(dev, MT_UDMA_TX_QSEL, MT_FW_DL_EN);
	if (test_and_clear_bit(MT76_STATE_POWER_OFF, &dev->mphy.state)) {