diff options
author | Wey-Yi Guy <wey-yi.w.guy@intel.com> | 2009-10-09 16:20:24 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-10-27 16:47:58 -0400 |
commit | 55036d6602679fb88dd7b1c19bb7203a0213b684 (patch) | |
tree | 76c20e42bf6c31cd7fee1cd8b748d2b63c2d6a3c /drivers/net/wireless/iwlwifi/iwl-6000.c | |
parent | bd35f150823c21000f4c0f029abb258bc1ae3b5f (diff) |
iwlwifi: additional items in sensitivity range table
Add more items to sensitivity range table to avoid using hardcoded values.
Initialize the table per device since unique per device information is
required to perform sensitivity calibration.
additional items in sensitivity range table:
.barker_corr_th_min: Barker correlation threshold minimum
.barker_corr_th_min_mrc: Barker correlation threshold minimum for MRC
.nrg_th_cca: Energy threshold for Clear Channel Assessment
Barker codes are a technique used in WLAN encoding for transmission.
MRC is "Maximal Ratio Combining", a technique for optimally combining the
signals from 2 or more receivers to achieve a better signal.
Signed-off-by: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Signed-off-by: Reinette Chatre <reinette.chatre@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-6000.c')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-6000.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-6000.c b/drivers/net/wireless/iwlwifi/iwl-6000.c index 46af74b86a83..dda1dd6ed40a 100644 --- a/drivers/net/wireless/iwlwifi/iwl-6000.c +++ b/drivers/net/wireless/iwlwifi/iwl-6000.c | |||
@@ -121,6 +121,10 @@ static struct iwl_sensitivity_ranges iwl6000_sensitivity = { | |||
121 | .auto_corr_max_cck_mrc = 310, | 121 | .auto_corr_max_cck_mrc = 310, |
122 | .nrg_th_cck = 97, | 122 | .nrg_th_cck = 97, |
123 | .nrg_th_ofdm = 100, | 123 | .nrg_th_ofdm = 100, |
124 | |||
125 | .barker_corr_th_min = 190, | ||
126 | .barker_corr_th_min_mrc = 390, | ||
127 | .nrg_th_cca = 62, | ||
124 | }; | 128 | }; |
125 | 129 | ||
126 | static int iwl6000_hw_set_hw_params(struct iwl_priv *priv) | 130 | static int iwl6000_hw_set_hw_params(struct iwl_priv *priv) |