From: Felix Fietkau Date: Mon, 23 Nov 2020 12:32:26 +0000 (+0100) Subject: mt76: mt7915: ensure that init work completes before starting the device X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=0c2d098098e1e9790ea4baa3cde51f01b4e44072;p=linux.git mt76: mt7915: ensure that init work completes before starting the device Without this change, the start operation could potentially race against eeprom or txbf init Signed-off-by: Felix Fietkau --- diff --git a/drivers/net/wireless/mediatek/mt76/mt7915/main.c b/drivers/net/wireless/mediatek/mt76/mt7915/main.c index 73c5ee10fd3e7..05dd75961d95a 100644 --- a/drivers/net/wireless/mediatek/mt76/mt7915/main.c +++ b/drivers/net/wireless/mediatek/mt76/mt7915/main.c @@ -26,6 +26,8 @@ static int mt7915_start(struct ieee80211_hw *hw) struct mt7915_phy *phy = mt7915_hw_phy(hw); bool running; + flush_work(&dev->init_work); + mutex_lock(&dev->mt76.mutex); running = mt7915_dev_running(dev);