| 1 | --- a/drivers/net/wireless/ath/ath9k/gpio.c |
| 2 | +++ b/drivers/net/wireless/ath/ath9k/gpio.c |
| 3 | @@ -120,6 +120,9 @@ static void ath_unregister_led(struct at |
| 4 | |
| 5 | void ath_deinit_leds(struct ath_softc *sc) |
| 6 | { |
| 7 | + if (AR_SREV_9100(sc->sc_ah)) |
| 8 | + return; |
| 9 | + |
| 10 | ath_unregister_led(&sc->assoc_led); |
| 11 | sc->sc_flags &= ~SC_OP_LED_ASSOCIATED; |
| 12 | ath_unregister_led(&sc->tx_led); |
| 13 | @@ -133,6 +136,9 @@ void ath_init_leds(struct ath_softc *sc) |
| 14 | char *trigger; |
| 15 | int ret; |
| 16 | |
| 17 | + if (AR_SREV_9100(sc->sc_ah)) |
| 18 | + return; |
| 19 | + |
| 20 | if (AR_SREV_9287(sc->sc_ah)) |
| 21 | sc->sc_ah->led_pin = ATH_LED_PIN_9287; |
| 22 | else |
| 23 | |