diff options
author | Vivek Natarajan <vnatarajan@atheros.com> | 2010-08-25 14:04:52 (GMT) |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-08-27 17:27:05 (GMT) |
commit | 93dbbcc45c364d62d58737fb9fe6d31085d6a999 (patch) | |
tree | f0206806c000b6b7a83ef7ce85982b6e8af6174b | |
parent | 53b1cf8a28c440fcb241f6fb84da71a7cb0f74f0 (diff) | |
download | linux-fsl-qoriq-93dbbcc45c364d62d58737fb9fe6d31085d6a999.tar.xz |
ath9k: Change the default LED pattern.
All major Atheros customers require the led to be in continuous
ON state rather than the blinking pattern.
Signed-off-by: Vivek Natarajan <vnatarajan@atheros.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r-- | drivers/net/wireless/ath/ath9k/init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/init.c b/drivers/net/wireless/ath/ath9k/init.c index 243c177..3dbff8d 100644 --- a/drivers/net/wireless/ath/ath9k/init.c +++ b/drivers/net/wireless/ath/ath9k/init.c @@ -33,7 +33,7 @@ int modparam_nohwcrypt; module_param_named(nohwcrypt, modparam_nohwcrypt, int, 0444); MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption"); -int led_blink = 1; +int led_blink; module_param_named(blink, led_blink, int, 0444); MODULE_PARM_DESC(blink, "Enable LED blink on activity"); |