diff options
author | Winkler, Tomas <tomas.winkler@intel.com> | 2009-01-19 18:30:29 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-01-29 16:01:00 -0500 |
commit | 62ea9c5b9e531dbf6b2601e6c9e2705a56983b6e (patch) | |
tree | e4091a98432c3c28059d79726565ec188f73827d /drivers/net/wireless/iwlwifi/iwl3945-base.c | |
parent | 805cee5b81f1e493820601fe7990aef935c2c621 (diff) |
iwlwifi: remove unused or twice defined members in iwl_priv
This patch removes user_txpower_limit and max_channel_txpower_limit
and use tx_power_user_lmt and tx_power_channel_lmt instead
call_post_assoc_from_beacon is not used
Signed-off-by: Tomas Winkler <tomas.winkler@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/iwl3945-base.c')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl3945-base.c | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl3945-base.c b/drivers/net/wireless/iwlwifi/iwl3945-base.c index 9df3eef10c22..0301df581487 100644 --- a/drivers/net/wireless/iwlwifi/iwl3945-base.c +++ b/drivers/net/wireless/iwlwifi/iwl3945-base.c | |||
@@ -3949,11 +3949,11 @@ static int iwl3945_init_channel_map(struct iwl_priv *priv) | |||
3949 | flags & EEPROM_CHANNEL_RADAR)) | 3949 | flags & EEPROM_CHANNEL_RADAR)) |
3950 | ? "" : "not "); | 3950 | ? "" : "not "); |
3951 | 3951 | ||
3952 | /* Set the user_txpower_limit to the highest power | 3952 | /* Set the tx_power_user_lmt to the highest power |
3953 | * supported by any channel */ | 3953 | * supported by any channel */ |
3954 | if (eeprom_ch_info[ch].max_power_avg > | 3954 | if (eeprom_ch_info[ch].max_power_avg > |
3955 | priv->user_txpower_limit) | 3955 | priv->tx_power_user_lmt) |
3956 | priv->user_txpower_limit = | 3956 | priv->tx_power_user_lmt = |
3957 | eeprom_ch_info[ch].max_power_avg; | 3957 | eeprom_ch_info[ch].max_power_avg; |
3958 | 3958 | ||
3959 | ch_info++; | 3959 | ch_info++; |
@@ -4228,8 +4228,8 @@ static int iwl3945_init_geos(struct iwl_priv *priv) | |||
4228 | if (ch->flags & EEPROM_CHANNEL_RADAR) | 4228 | if (ch->flags & EEPROM_CHANNEL_RADAR) |
4229 | geo_ch->flags |= IEEE80211_CHAN_RADAR; | 4229 | geo_ch->flags |= IEEE80211_CHAN_RADAR; |
4230 | 4230 | ||
4231 | if (ch->max_power_avg > priv->max_channel_txpower_limit) | 4231 | if (ch->max_power_avg > priv->tx_power_channel_lmt) |
4232 | priv->max_channel_txpower_limit = | 4232 | priv->tx_power_channel_lmt = |
4233 | ch->max_power_avg; | 4233 | ch->max_power_avg; |
4234 | } else { | 4234 | } else { |
4235 | geo_ch->flags |= IEEE80211_CHAN_DISABLED; | 4235 | geo_ch->flags |= IEEE80211_CHAN_DISABLED; |
@@ -6307,7 +6307,6 @@ static void iwl3945_mac_reset_tsf(struct ieee80211_hw *hw) | |||
6307 | spin_lock_irqsave(&priv->lock, flags); | 6307 | spin_lock_irqsave(&priv->lock, flags); |
6308 | priv->assoc_id = 0; | 6308 | priv->assoc_id = 0; |
6309 | priv->assoc_capability = 0; | 6309 | priv->assoc_capability = 0; |
6310 | priv->call_post_assoc_from_beacon = 0; | ||
6311 | 6310 | ||
6312 | /* new association get rid of ibss beacon skb */ | 6311 | /* new association get rid of ibss beacon skb */ |
6313 | if (priv->ibss_beacon) | 6312 | if (priv->ibss_beacon) |
@@ -6451,7 +6450,7 @@ static ssize_t show_tx_power(struct device *d, | |||
6451 | struct device_attribute *attr, char *buf) | 6450 | struct device_attribute *attr, char *buf) |
6452 | { | 6451 | { |
6453 | struct iwl_priv *priv = (struct iwl_priv *)d->driver_data; | 6452 | struct iwl_priv *priv = (struct iwl_priv *)d->driver_data; |
6454 | return sprintf(buf, "%d\n", priv->user_txpower_limit); | 6453 | return sprintf(buf, "%d\n", priv->tx_power_user_lmt); |
6455 | } | 6454 | } |
6456 | 6455 | ||
6457 | static ssize_t store_tx_power(struct device *d, | 6456 | static ssize_t store_tx_power(struct device *d, |
@@ -6974,7 +6973,7 @@ static int iwl3945_init_drv(struct iwl_priv *priv) | |||
6974 | priv->rates_mask = IWL_RATES_MASK; | 6973 | priv->rates_mask = IWL_RATES_MASK; |
6975 | /* If power management is turned on, default to AC mode */ | 6974 | /* If power management is turned on, default to AC mode */ |
6976 | priv->power_mode = IWL39_POWER_AC; | 6975 | priv->power_mode = IWL39_POWER_AC; |
6977 | priv->user_txpower_limit = IWL_DEFAULT_TX_POWER; | 6976 | priv->tx_power_user_lmt = IWL_DEFAULT_TX_POWER; |
6978 | 6977 | ||
6979 | ret = iwl3945_init_channel_map(priv); | 6978 | ret = iwl3945_init_channel_map(priv); |
6980 | if (ret) { | 6979 | if (ret) { |