diff options
author | John W. Linville <linville@tuxdriver.com> | 2011-01-05 09:39:17 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-01-05 14:36:27 -0500 |
commit | 3e6109c57468ed320beefd2861fe2cc418cccfc2 (patch) | |
tree | 35ecdbb144065dbd49abfad1598ae81544529b0c /drivers/net/wireless/ath/ath9k/main.c | |
parent | 6303710d7aa62bfb154cd13ab5ab12cfa8baaf91 (diff) | |
download | lwn-3e6109c57468ed320beefd2861fe2cc418cccfc2.tar.gz lwn-3e6109c57468ed320beefd2861fe2cc418cccfc2.zip |
ath9k: qualify global modparam_nohwcrypt variable
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/main.c')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/main.c b/drivers/net/wireless/ath/ath9k/main.c index a818e4fd56f5..f90a6ca94a76 100644 --- a/drivers/net/wireless/ath/ath9k/main.c +++ b/drivers/net/wireless/ath/ath9k/main.c @@ -1829,7 +1829,7 @@ static int ath9k_set_key(struct ieee80211_hw *hw, struct ath_common *common = ath9k_hw_common(sc->sc_ah); int ret = 0; - if (modparam_nohwcrypt) + if (ath9k_modparam_nohwcrypt) return -ENOSPC; mutex_lock(&sc->mutex); |