2010-01-15 03:16:40 +02:00
|
|
|
--- a/drivers/net/wireless/ath/ath9k/gpio.c
|
|
|
|
+++ b/drivers/net/wireless/ath/ath9k/gpio.c
|
2010-11-28 00:11:13 +02:00
|
|
|
@@ -120,6 +120,9 @@ static void ath_unregister_led(struct at
|
2009-01-31 20:36:07 +02:00
|
|
|
|
2010-01-15 03:16:40 +02:00
|
|
|
void ath_deinit_leds(struct ath_softc *sc)
|
2009-01-31 20:36:07 +02:00
|
|
|
{
|
|
|
|
+ if (AR_SREV_9100(sc->sc_ah))
|
|
|
|
+ return;
|
|
|
|
+
|
|
|
|
ath_unregister_led(&sc->assoc_led);
|
|
|
|
sc->sc_flags &= ~SC_OP_LED_ASSOCIATED;
|
2009-08-15 11:26:38 +03:00
|
|
|
ath_unregister_led(&sc->tx_led);
|
2010-11-28 00:11:13 +02:00
|
|
|
@@ -133,6 +136,9 @@ void ath_init_leds(struct ath_softc *sc)
|
2010-01-15 03:16:40 +02:00
|
|
|
char *trigger;
|
|
|
|
int ret;
|
2009-01-31 20:36:07 +02:00
|
|
|
|
|
|
|
+ if (AR_SREV_9100(sc->sc_ah))
|
|
|
|
+ return;
|
|
|
|
+
|
2010-01-15 03:16:40 +02:00
|
|
|
if (AR_SREV_9287(sc->sc_ah))
|
|
|
|
sc->sc_ah->led_pin = ATH_LED_PIN_9287;
|
|
|
|
else
|