Commit 7c7b1394 authored by Lorenzo Bianconi's avatar Lorenzo Bianconi Committed by Felix Fietkau

mt76x0: remove mt76x0_stop_hardware routine

Since it is actually used in a single place and it just
runs mt76x0_chip_onoff routine, remove mt76x0_stop_hardware
and use mt76x0_chip_onoff directly
Signed-off-by: default avatarLorenzo Bianconi <lorenzo.bianconi@redhat.com>
Signed-off-by: default avatarStanislaw Gruszka <sgruszka@redhat.com>
Signed-off-by: default avatarFelix Fietkau <nbd@nbd.name>
parent 23ea0e7e
...@@ -364,11 +364,6 @@ void mt76x0_mac_stop(struct mt76x0_dev *dev) ...@@ -364,11 +364,6 @@ void mt76x0_mac_stop(struct mt76x0_dev *dev)
mt76x0_mac_stop_hw(dev); mt76x0_mac_stop_hw(dev);
} }
static void mt76x0_stop_hardware(struct mt76x0_dev *dev)
{
mt76x0_chip_onoff(dev, false, false);
}
int mt76x0_init_hardware(struct mt76x0_dev *dev) int mt76x0_init_hardware(struct mt76x0_dev *dev)
{ {
static const u16 beacon_offsets[16] = { static const u16 beacon_offsets[16] = {
...@@ -476,7 +471,7 @@ void mt76x0_cleanup(struct mt76x0_dev *dev) ...@@ -476,7 +471,7 @@ void mt76x0_cleanup(struct mt76x0_dev *dev)
if (!test_and_clear_bit(MT76_STATE_INITIALIZED, &dev->mt76.state)) if (!test_and_clear_bit(MT76_STATE_INITIALIZED, &dev->mt76.state))
return; return;
mt76x0_stop_hardware(dev); mt76x0_chip_onoff(dev, false, false);
mt76u_queues_deinit(&dev->mt76); mt76u_queues_deinit(&dev->mt76);
mt76u_mcu_deinit(&dev->mt76); mt76u_mcu_deinit(&dev->mt76);
} }
......
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