summaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/ipw2200.c
diff options
context:
space:
mode:
authorCahill, Ben M2006-03-07 20:02:27 +0100
committerJohn W. Linville2006-03-17 21:08:04 +0100
commit71de1f3dd14e3e39cef929506a9526779f5a447d (patch)
treed87676e1eee0670e23a506dc34ec16b615181732 /drivers/net/wireless/ipw2200.c
parent[PATCH] ipw2200: Set a meaningful silence threshold value (diff)
downloadkernel-qcow2-linux-71de1f3dd14e3e39cef929506a9526779f5a447d.tar.gz
kernel-qcow2-linux-71de1f3dd14e3e39cef929506a9526779f5a447d.tar.xz
kernel-qcow2-linux-71de1f3dd14e3e39cef929506a9526779f5a447d.zip
[PATCH] ipw2200: Enables the "slow diversity" algorithm
This forces one antenna or the other, if the background noise is significantly quieter in one than the other. It favors the quieter antenna, and won't kick in unless the difference is significant. Signed-off-by: Cahill, Ben M <ben.m.cahill@intel.com> Signed-off-by: Zhu Yi <yi.zhu@intel.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ipw2200.c')
-rw-r--r--drivers/net/wireless/ipw2200.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ipw2200.c b/drivers/net/wireless/ipw2200.c
index 06909cbc9808..954a095eeb51 100644
--- a/drivers/net/wireless/ipw2200.c
+++ b/drivers/net/wireless/ipw2200.c
@@ -9600,7 +9600,7 @@ static void init_sys_config(struct ipw_sys_config *sys_config)
sys_config->disable_unicast_decryption = 1;
sys_config->exclude_multicast_unencrypted = 0;
sys_config->disable_multicast_decryption = 1;
- sys_config->antenna_diversity = CFG_SYS_ANTENNA_BOTH;
+ sys_config->antenna_diversity = CFG_SYS_ANTENNA_SLOW_DIV;
sys_config->pass_crc_to_host = 0; /* TODO: See if 1 gives us FCS */
sys_config->dot11g_auto_detection = 0;
sys_config->enable_cts_to_self = 0;