diff options
-rw-r--r-- | drivers/net/wireless/ath/ath9k/main.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/net/wireless/ath/ath9k/main.c b/drivers/net/wireless/ath/ath9k/main.c index 49f27648fec8..7437b4295b2c 100644 --- a/drivers/net/wireless/ath/ath9k/main.c +++ b/drivers/net/wireless/ath/ath9k/main.c | |||
@@ -1056,7 +1056,6 @@ static void ath_unregister_led(struct ath_led *led) | |||
1056 | 1056 | ||
1057 | static void ath_deinit_leds(struct ath_softc *sc) | 1057 | static void ath_deinit_leds(struct ath_softc *sc) |
1058 | { | 1058 | { |
1059 | cancel_delayed_work_sync(&sc->ath_led_blink_work); | ||
1060 | ath_unregister_led(&sc->assoc_led); | 1059 | ath_unregister_led(&sc->assoc_led); |
1061 | sc->sc_flags &= ~SC_OP_LED_ASSOCIATED; | 1060 | sc->sc_flags &= ~SC_OP_LED_ASSOCIATED; |
1062 | ath_unregister_led(&sc->tx_led); | 1061 | ath_unregister_led(&sc->tx_led); |
@@ -1113,6 +1112,7 @@ static void ath_init_leds(struct ath_softc *sc) | |||
1113 | return; | 1112 | return; |
1114 | 1113 | ||
1115 | fail: | 1114 | fail: |
1115 | cancel_delayed_work_sync(&sc->ath_led_blink_work); | ||
1116 | ath_deinit_leds(sc); | 1116 | ath_deinit_leds(sc); |
1117 | } | 1117 | } |
1118 | 1118 | ||
@@ -1251,11 +1251,13 @@ void ath_detach(struct ath_softc *sc) | |||
1251 | 1251 | ||
1252 | DPRINTF(sc, ATH_DBG_CONFIG, "Detach ATH hw\n"); | 1252 | DPRINTF(sc, ATH_DBG_CONFIG, "Detach ATH hw\n"); |
1253 | 1253 | ||
1254 | ath_deinit_leds(sc); | 1254 | cancel_delayed_work_sync(&sc->ath_led_blink_work); |
1255 | cancel_delayed_work_sync(&sc->tx_complete_work); | 1255 | cancel_delayed_work_sync(&sc->tx_complete_work); |
1256 | cancel_delayed_work_sync(&sc->wiphy_work); | 1256 | cancel_delayed_work_sync(&sc->wiphy_work); |
1257 | cancel_work_sync(&sc->chan_work); | 1257 | cancel_work_sync(&sc->chan_work); |
1258 | 1258 | ||
1259 | ath_deinit_leds(sc); | ||
1260 | |||
1259 | for (i = 0; i < sc->num_sec_wiphy; i++) { | 1261 | for (i = 0; i < sc->num_sec_wiphy; i++) { |
1260 | struct ath_wiphy *aphy = sc->sec_wiphy[i]; | 1262 | struct ath_wiphy *aphy = sc->sec_wiphy[i]; |
1261 | if (aphy == NULL) | 1263 | if (aphy == NULL) |