diff options
author | Luis R. Rodriguez <lrodriguez@atheros.com> | 2009-10-08 01:00:18 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-10-09 16:23:34 -0400 |
commit | af1fc67c1a803d303b59e54be45fe3329103e7db (patch) | |
tree | 4af9c2790403f387e567716a94e59a6740134943 | |
parent | 82e62926ab31d5a535f85be36d6621635ee34c3c (diff) |
ath9k: use right parameter for MODULE_PARM_DESC() for debug
Reported-by: sujith.manoharan@atheros.com
Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
-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 36af6f32652a..69cf702b18c2 100644 --- a/drivers/net/wireless/ath/ath9k/main.c +++ b/drivers/net/wireless/ath/ath9k/main.c | |||
@@ -31,7 +31,7 @@ MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption"); | |||
31 | 31 | ||
32 | static unsigned int ath9k_debug = ATH_DBG_DEFAULT; | 32 | static unsigned int ath9k_debug = ATH_DBG_DEFAULT; |
33 | module_param_named(debug, ath9k_debug, uint, 0); | 33 | module_param_named(debug, ath9k_debug, uint, 0); |
34 | MODULE_PARM_DESC(ath9k_debug, "Debugging mask"); | 34 | MODULE_PARM_DESC(debug, "Debugging mask"); |
35 | 35 | ||
36 | /* We use the hw_value as an index into our private channel structure */ | 36 | /* We use the hw_value as an index into our private channel structure */ |
37 | 37 | ||