diff options
author | Luis R. Rodriguez <lrodriguez@atheros.com> | 2009-10-08 05:00:18 (GMT) |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-10-09 20:23:34 (GMT) |
commit | af1fc67c1a803d303b59e54be45fe3329103e7db (patch) | |
tree | 4af9c2790403f387e567716a94e59a6740134943 | |
parent | 82e62926ab31d5a535f85be36d6621635ee34c3c (diff) | |
download | linux-af1fc67c1a803d303b59e54be45fe3329103e7db.tar.xz |
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 36af6f3..69cf702 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"); static unsigned int ath9k_debug = ATH_DBG_DEFAULT; module_param_named(debug, ath9k_debug, uint, 0); -MODULE_PARM_DESC(ath9k_debug, "Debugging mask"); +MODULE_PARM_DESC(debug, "Debugging mask"); /* We use the hw_value as an index into our private channel structure */ |