diff options
author | Senthil Balasubramanian <senthilkumar@atheros.com> | 2008-11-13 07:30:02 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-11-25 16:41:30 -0500 |
commit | e97275cb062cf927cdb086f0107657dd92160801 (patch) | |
tree | 611bb3cff70ebdfb5507f63c9b64cf10fffcdf97 /drivers/net/wireless/ath9k/main.c | |
parent | f9bbf431beb7dd98b94fa965dab851432be4b762 (diff) |
ath9k: Build RFKILL feature even when RFKILL subsystem is a MODULE
Currently, ath9k builds RFKILL feature only when the RFKILL subsystem
is built part of the kernel. Build RFKILL feature regardless of whether
RFKILL subsystem is built as a MODULE or part of the kernel.
Signed-off-by: Senthil Balasubramanian <senthilkumar@atheros.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath9k/main.c')
-rw-r--r-- | drivers/net/wireless/ath9k/main.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/net/wireless/ath9k/main.c b/drivers/net/wireless/ath9k/main.c index fbb2dd2373c8..ce94edee71d1 100644 --- a/drivers/net/wireless/ath9k/main.c +++ b/drivers/net/wireless/ath9k/main.c | |||
@@ -594,7 +594,7 @@ fail: | |||
594 | ath_deinit_leds(sc); | 594 | ath_deinit_leds(sc); |
595 | } | 595 | } |
596 | 596 | ||
597 | #ifdef CONFIG_RFKILL | 597 | #if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE) |
598 | 598 | ||
599 | /*******************/ | 599 | /*******************/ |
600 | /* Rfkill */ | 600 | /* Rfkill */ |
@@ -838,7 +838,7 @@ static void ath_detach(struct ath_softc *sc) | |||
838 | 838 | ||
839 | ath_deinit_leds(sc); | 839 | ath_deinit_leds(sc); |
840 | 840 | ||
841 | #ifdef CONFIG_RFKILL | 841 | #if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE) |
842 | ath_deinit_rfkill(sc); | 842 | ath_deinit_rfkill(sc); |
843 | #endif | 843 | #endif |
844 | ath_rate_control_unregister(); | 844 | ath_rate_control_unregister(); |
@@ -921,7 +921,7 @@ static int ath_attach(u16 devid, struct ath_softc *sc) | |||
921 | /* Initialize LED control */ | 921 | /* Initialize LED control */ |
922 | ath_init_leds(sc); | 922 | ath_init_leds(sc); |
923 | 923 | ||
924 | #ifdef CONFIG_RFKILL | 924 | #if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE) |
925 | /* Initialze h/w Rfkill */ | 925 | /* Initialze h/w Rfkill */ |
926 | if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT) | 926 | if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT) |
927 | INIT_DELAYED_WORK(&sc->rf_kill.rfkill_poll, ath_rfkill_poll); | 927 | INIT_DELAYED_WORK(&sc->rf_kill.rfkill_poll, ath_rfkill_poll); |
@@ -978,7 +978,7 @@ static int ath9k_start(struct ieee80211_hw *hw) | |||
978 | goto exit; | 978 | goto exit; |
979 | } | 979 | } |
980 | 980 | ||
981 | #ifdef CONFIG_RFKILL | 981 | #if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE) |
982 | error = ath_start_rfkill_poll(sc); | 982 | error = ath_start_rfkill_poll(sc); |
983 | #endif | 983 | #endif |
984 | 984 | ||
@@ -1722,7 +1722,7 @@ static int ath_pci_suspend(struct pci_dev *pdev, pm_message_t state) | |||
1722 | 1722 | ||
1723 | ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 1); | 1723 | ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 1); |
1724 | 1724 | ||
1725 | #ifdef CONFIG_RFKILL | 1725 | #if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE) |
1726 | if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT) | 1726 | if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT) |
1727 | cancel_delayed_work_sync(&sc->rf_kill.rfkill_poll); | 1727 | cancel_delayed_work_sync(&sc->rf_kill.rfkill_poll); |
1728 | #endif | 1728 | #endif |
@@ -1759,7 +1759,7 @@ static int ath_pci_resume(struct pci_dev *pdev) | |||
1759 | AR_GPIO_OUTPUT_MUX_AS_OUTPUT); | 1759 | AR_GPIO_OUTPUT_MUX_AS_OUTPUT); |
1760 | ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 1); | 1760 | ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 1); |
1761 | 1761 | ||
1762 | #ifdef CONFIG_RFKILL | 1762 | #if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE) |
1763 | /* | 1763 | /* |
1764 | * check the h/w rfkill state on resume | 1764 | * check the h/w rfkill state on resume |
1765 | * and start the rfkill poll timer | 1765 | * and start the rfkill poll timer |