diff options
author | Pavel Roskin <proski@gnu.org> | 2006-08-15 21:41:39 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2006-08-23 14:20:37 -0400 |
commit | 9b5cce07648d059a013444116bd0140b047b25a1 (patch) | |
tree | 7c8abb693dc50f81b442b5f459350b2e0f996f86 | |
parent | 794ccda61c7dc2aa6c66e8ef18a44d865d3c3a7d (diff) | |
download | linux-9b5cce07648d059a013444116bd0140b047b25a1.tar.gz linux-9b5cce07648d059a013444116bd0140b047b25a1.tar.bz2 linux-9b5cce07648d059a013444116bd0140b047b25a1.zip |
[PATCH] hostap: Restore antenna selection settings after port reset
Intersil firmware 1.7.4 (and possibly others) loses the antenna
selection settings when the port is reset.
Signed-off-by: David Acker <dacker@roinet.com>
Signed-off-by: Pavel Roskin <proski@gnu.org>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r-- | drivers/net/wireless/hostap/hostap_hw.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/wireless/hostap/hostap_hw.c b/drivers/net/wireless/hostap/hostap_hw.c index dafaa5ff5aa6..d500012fdc7a 100644 --- a/drivers/net/wireless/hostap/hostap_hw.c +++ b/drivers/net/wireless/hostap/hostap_hw.c @@ -1042,6 +1042,9 @@ static int prism2_reset_port(struct net_device *dev) dev->name, local->fragm_threshold); } + /* Some firmwares lose antenna selection settings on reset */ + (void) hostap_set_antsel(local); + return res; } |