Commit 292ae174 authored by Ron Rindjunsky's avatar Ron Rindjunsky Committed by John W. Linville

iwlwifi: remove IWL{4965,3945}_QOS

This patch removes the IWL4965_QOS and IWL3945_QOS defines from Kconfig
file along with all uses of it. These defines were relevant for the
period QoS code was tested to be stable in driver's flows.
Signed-off-by: default avatarRon Rindjunsky <ron.rindjunsky@intel.com>
Signed-off-by: default avatarTomas Winkler <tomas.winkler@intel.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent a9af2013
...@@ -24,17 +24,10 @@ config IWL4965 ...@@ -24,17 +24,10 @@ config IWL4965
say M here and read <file:Documentation/kbuild/modules.txt>. The say M here and read <file:Documentation/kbuild/modules.txt>. The
module will be called iwl4965.ko. module will be called iwl4965.ko.
config IWL4965_QOS
bool "Enable Wireless QoS in iwl4965 driver"
depends on IWL4965
---help---
This option will enable wireless quality of service (QoS) for the
iwl4965 driver.
config IWL4965_HT config IWL4965_HT
bool "Enable 802.11n HT features in iwl4965 driver" bool "Enable 802.11n HT features in iwl4965 driver"
depends on EXPERIMENTAL depends on EXPERIMENTAL
depends on IWL4965 && IWL4965_QOS depends on IWL4965
---help--- ---help---
This option enables IEEE 802.11n High Throughput features This option enables IEEE 802.11n High Throughput features
for the iwl4965 driver. for the iwl4965 driver.
...@@ -104,13 +97,6 @@ config IWL3945 ...@@ -104,13 +97,6 @@ config IWL3945
say M here and read <file:Documentation/kbuild/modules.txt>. The say M here and read <file:Documentation/kbuild/modules.txt>. The
module will be called iwl3945.ko. module will be called iwl3945.ko.
config IWL3945_QOS
bool "Enable Wireless QoS in iwl3945 driver"
depends on IWL3945
---help---
This option will enable wireless quality of service (QoS) for the
iwl3945 driver.
config IWL3945_SPECTRUM_MEASUREMENT config IWL3945_SPECTRUM_MEASUREMENT
bool "Enable Spectrum Measurement in iwl3945 drivers" bool "Enable Spectrum Measurement in iwl3945 drivers"
depends on IWL3945 depends on IWL3945
......
...@@ -431,8 +431,6 @@ union iwl3945_ht_rate_supp { ...@@ -431,8 +431,6 @@ union iwl3945_ht_rate_supp {
}; };
}; };
#ifdef CONFIG_IWL3945_QOS
union iwl3945_qos_capabity { union iwl3945_qos_capabity {
struct { struct {
u8 edca_count:4; /* bit 0-3 */ u8 edca_count:4; /* bit 0-3 */
...@@ -460,7 +458,6 @@ struct iwl3945_qos_info { ...@@ -460,7 +458,6 @@ struct iwl3945_qos_info {
union iwl3945_qos_capabity qos_cap; union iwl3945_qos_capabity qos_cap;
struct iwl3945_qosparam_cmd def_qos_parm; struct iwl3945_qosparam_cmd def_qos_parm;
}; };
#endif /*CONFIG_IWL3945_QOS */
#define STA_PS_STATUS_WAKE 0 #define STA_PS_STATUS_WAKE 0
#define STA_PS_STATUS_SLEEP 1 #define STA_PS_STATUS_SLEEP 1
...@@ -869,9 +866,7 @@ struct iwl3945_priv { ...@@ -869,9 +866,7 @@ struct iwl3945_priv {
u16 assoc_capability; u16 assoc_capability;
u8 ps_mode; u8 ps_mode;
#ifdef CONFIG_IWL3945_QOS
struct iwl3945_qos_info qos_data; struct iwl3945_qos_info qos_data;
#endif /*CONFIG_IWL3945_QOS */
struct workqueue_struct *workqueue; struct workqueue_struct *workqueue;
......
...@@ -510,8 +510,6 @@ struct iwl_ht_info { ...@@ -510,8 +510,6 @@ struct iwl_ht_info {
}; };
#endif /*CONFIG_IWL4965_HT */ #endif /*CONFIG_IWL4965_HT */
#ifdef CONFIG_IWL4965_QOS
union iwl4965_qos_capabity { union iwl4965_qos_capabity {
struct { struct {
u8 edca_count:4; /* bit 0-3 */ u8 edca_count:4; /* bit 0-3 */
...@@ -539,7 +537,6 @@ struct iwl4965_qos_info { ...@@ -539,7 +537,6 @@ struct iwl4965_qos_info {
union iwl4965_qos_capabity qos_cap; union iwl4965_qos_capabity qos_cap;
struct iwl4965_qosparam_cmd def_qos_parm; struct iwl4965_qosparam_cmd def_qos_parm;
}; };
#endif /*CONFIG_IWL4965_QOS */
#define STA_PS_STATUS_WAKE 0 #define STA_PS_STATUS_WAKE 0
#define STA_PS_STATUS_SLEEP 1 #define STA_PS_STATUS_SLEEP 1
...@@ -1173,9 +1170,7 @@ struct iwl4965_priv { ...@@ -1173,9 +1170,7 @@ struct iwl4965_priv {
u16 assoc_capability; u16 assoc_capability;
u8 ps_mode; u8 ps_mode;
#ifdef CONFIG_IWL4965_QOS
struct iwl4965_qos_info qos_data; struct iwl4965_qos_info qos_data;
#endif /*CONFIG_IWL4965_QOS */
struct workqueue_struct *workqueue; struct workqueue_struct *workqueue;
......
...@@ -1910,7 +1910,6 @@ static u16 iwl3945_fill_probe_req(struct iwl3945_priv *priv, ...@@ -1910,7 +1910,6 @@ static u16 iwl3945_fill_probe_req(struct iwl3945_priv *priv,
/* /*
* QoS support * QoS support
*/ */
#ifdef CONFIG_IWL3945_QOS
static int iwl3945_send_qos_params_command(struct iwl3945_priv *priv, static int iwl3945_send_qos_params_command(struct iwl3945_priv *priv,
struct iwl3945_qosparam_cmd *qos) struct iwl3945_qosparam_cmd *qos)
{ {
...@@ -2039,7 +2038,6 @@ static void iwl3945_activate_qos(struct iwl3945_priv *priv, u8 force) ...@@ -2039,7 +2038,6 @@ static void iwl3945_activate_qos(struct iwl3945_priv *priv, u8 force)
} }
} }
#endif /* CONFIG_IWL3945_QOS */
/* /*
* Power management (not Tx power!) functions * Power management (not Tx power!) functions
*/ */
...@@ -6770,9 +6768,8 @@ static void iwl3945_bg_post_associate(struct work_struct *data) ...@@ -6770,9 +6768,8 @@ static void iwl3945_bg_post_associate(struct work_struct *data)
iwl3945_sequence_reset(priv); iwl3945_sequence_reset(priv);
#ifdef CONFIG_IWL3945_QOS
iwl3945_activate_qos(priv, 0); iwl3945_activate_qos(priv, 0);
#endif /* CONFIG_IWL3945_QOS */
/* we have just associated, don't start scan too early */ /* we have just associated, don't start scan too early */
priv->next_scan_jiffies = jiffies + IWL_DELAY_NEXT_SCAN; priv->next_scan_jiffies = jiffies + IWL_DELAY_NEXT_SCAN;
mutex_unlock(&priv->mutex); mutex_unlock(&priv->mutex);
...@@ -7417,10 +7414,8 @@ static int iwl3945_mac_conf_tx(struct ieee80211_hw *hw, int queue, ...@@ -7417,10 +7414,8 @@ static int iwl3945_mac_conf_tx(struct ieee80211_hw *hw, int queue,
const struct ieee80211_tx_queue_params *params) const struct ieee80211_tx_queue_params *params)
{ {
struct iwl3945_priv *priv = hw->priv; struct iwl3945_priv *priv = hw->priv;
#ifdef CONFIG_IWL3945_QOS
unsigned long flags; unsigned long flags;
int q; int q;
#endif /* CONFIG_IWL3945_QOS */
IWL_DEBUG_MAC80211("enter\n"); IWL_DEBUG_MAC80211("enter\n");
...@@ -7434,7 +7429,6 @@ static int iwl3945_mac_conf_tx(struct ieee80211_hw *hw, int queue, ...@@ -7434,7 +7429,6 @@ static int iwl3945_mac_conf_tx(struct ieee80211_hw *hw, int queue,
return 0; return 0;
} }
#ifdef CONFIG_IWL3945_QOS
if (!priv->qos_data.qos_enable) { if (!priv->qos_data.qos_enable) {
priv->qos_data.qos_active = 0; priv->qos_data.qos_active = 0;
IWL_DEBUG_MAC80211("leave - qos not enabled\n"); IWL_DEBUG_MAC80211("leave - qos not enabled\n");
...@@ -7463,8 +7457,6 @@ static int iwl3945_mac_conf_tx(struct ieee80211_hw *hw, int queue, ...@@ -7463,8 +7457,6 @@ static int iwl3945_mac_conf_tx(struct ieee80211_hw *hw, int queue,
mutex_unlock(&priv->mutex); mutex_unlock(&priv->mutex);
#endif /*CONFIG_IWL3945_QOS */
IWL_DEBUG_MAC80211("leave\n"); IWL_DEBUG_MAC80211("leave\n");
return 0; return 0;
} }
...@@ -7529,9 +7521,8 @@ static void iwl3945_mac_reset_tsf(struct ieee80211_hw *hw) ...@@ -7529,9 +7521,8 @@ static void iwl3945_mac_reset_tsf(struct ieee80211_hw *hw)
mutex_lock(&priv->mutex); mutex_lock(&priv->mutex);
IWL_DEBUG_MAC80211("enter\n"); IWL_DEBUG_MAC80211("enter\n");
#ifdef CONFIG_IWL3945_QOS
iwl3945_reset_qos(priv); iwl3945_reset_qos(priv);
#endif
cancel_delayed_work(&priv->post_associate); cancel_delayed_work(&priv->post_associate);
spin_lock_irqsave(&priv->lock, flags); spin_lock_irqsave(&priv->lock, flags);
...@@ -7619,9 +7610,7 @@ static int iwl3945_mac_beacon_update(struct ieee80211_hw *hw, struct sk_buff *sk ...@@ -7619,9 +7610,7 @@ static int iwl3945_mac_beacon_update(struct ieee80211_hw *hw, struct sk_buff *sk
IWL_DEBUG_MAC80211("leave\n"); IWL_DEBUG_MAC80211("leave\n");
spin_unlock_irqrestore(&priv->lock, flags); spin_unlock_irqrestore(&priv->lock, flags);
#ifdef CONFIG_IWL3945_QOS
iwl3945_reset_qos(priv); iwl3945_reset_qos(priv);
#endif
queue_work(priv->workqueue, &priv->post_associate.work); queue_work(priv->workqueue, &priv->post_associate.work);
...@@ -8409,7 +8398,6 @@ static int iwl3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *e ...@@ -8409,7 +8398,6 @@ static int iwl3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *e
goto out_iounmap; goto out_iounmap;
} }
#ifdef CONFIG_IWL3945_QOS
if (iwl3945_param_qos_enable) if (iwl3945_param_qos_enable)
priv->qos_data.qos_enable = 1; priv->qos_data.qos_enable = 1;
...@@ -8417,7 +8405,6 @@ static int iwl3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *e ...@@ -8417,7 +8405,6 @@ static int iwl3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *e
priv->qos_data.qos_active = 0; priv->qos_data.qos_active = 0;
priv->qos_data.qos_cap.val = 0; priv->qos_data.qos_cap.val = 0;
#endif /* CONFIG_IWL3945_QOS */
iwl3945_set_rxon_channel(priv, IEEE80211_BAND_2GHZ, 6); iwl3945_set_rxon_channel(priv, IEEE80211_BAND_2GHZ, 6);
iwl3945_setup_deferred_work(priv); iwl3945_setup_deferred_work(priv);
......
...@@ -2014,7 +2014,6 @@ static u16 iwl4965_fill_probe_req(struct iwl4965_priv *priv, ...@@ -2014,7 +2014,6 @@ static u16 iwl4965_fill_probe_req(struct iwl4965_priv *priv,
/* /*
* QoS support * QoS support
*/ */
#ifdef CONFIG_IWL4965_QOS
static int iwl4965_send_qos_params_command(struct iwl4965_priv *priv, static int iwl4965_send_qos_params_command(struct iwl4965_priv *priv,
struct iwl4965_qosparam_cmd *qos) struct iwl4965_qosparam_cmd *qos)
{ {
...@@ -2148,7 +2147,6 @@ static void iwl4965_activate_qos(struct iwl4965_priv *priv, u8 force) ...@@ -2148,7 +2147,6 @@ static void iwl4965_activate_qos(struct iwl4965_priv *priv, u8 force)
} }
} }
#endif /* CONFIG_IWL4965_QOS */
/* /*
* Power management (not Tx power!) functions * Power management (not Tx power!) functions
*/ */
...@@ -7200,9 +7198,8 @@ static void iwl4965_bg_post_associate(struct work_struct *data) ...@@ -7200,9 +7198,8 @@ static void iwl4965_bg_post_associate(struct work_struct *data)
if (priv->iw_mode == IEEE80211_IF_TYPE_IBSS) if (priv->iw_mode == IEEE80211_IF_TYPE_IBSS)
priv->assoc_station_added = 1; priv->assoc_station_added = 1;
#ifdef CONFIG_IWL4965_QOS
iwl4965_activate_qos(priv, 0); iwl4965_activate_qos(priv, 0);
#endif /* CONFIG_IWL4965_QOS */
/* we have just associated, don't start scan too early */ /* we have just associated, don't start scan too early */
priv->next_scan_jiffies = jiffies + IWL_DELAY_NEXT_SCAN; priv->next_scan_jiffies = jiffies + IWL_DELAY_NEXT_SCAN;
mutex_unlock(&priv->mutex); mutex_unlock(&priv->mutex);
...@@ -7577,9 +7574,7 @@ static void iwl4965_config_ap(struct iwl4965_priv *priv) ...@@ -7577,9 +7574,7 @@ static void iwl4965_config_ap(struct iwl4965_priv *priv)
/* restore RXON assoc */ /* restore RXON assoc */
priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK; priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
iwl4965_commit_rxon(priv); iwl4965_commit_rxon(priv);
#ifdef CONFIG_IWL4965_QOS
iwl4965_activate_qos(priv, 1); iwl4965_activate_qos(priv, 1);
#endif
iwl4965_rxon_add_station(priv, iwl4965_broadcast_addr, 0); iwl4965_rxon_add_station(priv, iwl4965_broadcast_addr, 0);
} }
iwl4965_send_beacon_cmd(priv); iwl4965_send_beacon_cmd(priv);
...@@ -7893,10 +7888,8 @@ static int iwl4965_mac_conf_tx(struct ieee80211_hw *hw, int queue, ...@@ -7893,10 +7888,8 @@ static int iwl4965_mac_conf_tx(struct ieee80211_hw *hw, int queue,
const struct ieee80211_tx_queue_params *params) const struct ieee80211_tx_queue_params *params)
{ {
struct iwl4965_priv *priv = hw->priv; struct iwl4965_priv *priv = hw->priv;
#ifdef CONFIG_IWL4965_QOS
unsigned long flags; unsigned long flags;
int q; int q;
#endif /* CONFIG_IWL4965_QOS */
IWL_DEBUG_MAC80211("enter\n"); IWL_DEBUG_MAC80211("enter\n");
...@@ -7910,7 +7903,6 @@ static int iwl4965_mac_conf_tx(struct ieee80211_hw *hw, int queue, ...@@ -7910,7 +7903,6 @@ static int iwl4965_mac_conf_tx(struct ieee80211_hw *hw, int queue,
return 0; return 0;
} }
#ifdef CONFIG_IWL4965_QOS
if (!priv->qos_data.qos_enable) { if (!priv->qos_data.qos_enable) {
priv->qos_data.qos_active = 0; priv->qos_data.qos_active = 0;
IWL_DEBUG_MAC80211("leave - qos not enabled\n"); IWL_DEBUG_MAC80211("leave - qos not enabled\n");
...@@ -7939,8 +7931,6 @@ static int iwl4965_mac_conf_tx(struct ieee80211_hw *hw, int queue, ...@@ -7939,8 +7931,6 @@ static int iwl4965_mac_conf_tx(struct ieee80211_hw *hw, int queue,
mutex_unlock(&priv->mutex); mutex_unlock(&priv->mutex);
#endif /*CONFIG_IWL4965_QOS */
IWL_DEBUG_MAC80211("leave\n"); IWL_DEBUG_MAC80211("leave\n");
return 0; return 0;
} }
...@@ -8012,9 +8002,7 @@ static void iwl4965_mac_reset_tsf(struct ieee80211_hw *hw) ...@@ -8012,9 +8002,7 @@ static void iwl4965_mac_reset_tsf(struct ieee80211_hw *hw)
spin_unlock_irqrestore(&priv->lock, flags); spin_unlock_irqrestore(&priv->lock, flags);
#endif /* CONFIG_IWL4965_HT */ #endif /* CONFIG_IWL4965_HT */
#ifdef CONFIG_IWL4965_QOS
iwl4965_reset_qos(priv); iwl4965_reset_qos(priv);
#endif
cancel_delayed_work(&priv->post_associate); cancel_delayed_work(&priv->post_associate);
...@@ -8103,9 +8091,7 @@ static int iwl4965_mac_beacon_update(struct ieee80211_hw *hw, struct sk_buff *sk ...@@ -8103,9 +8091,7 @@ static int iwl4965_mac_beacon_update(struct ieee80211_hw *hw, struct sk_buff *sk
IWL_DEBUG_MAC80211("leave\n"); IWL_DEBUG_MAC80211("leave\n");
spin_unlock_irqrestore(&priv->lock, flags); spin_unlock_irqrestore(&priv->lock, flags);
#ifdef CONFIG_IWL4965_QOS
iwl4965_reset_qos(priv); iwl4965_reset_qos(priv);
#endif
queue_work(priv->workqueue, &priv->post_associate.work); queue_work(priv->workqueue, &priv->post_associate.work);
...@@ -8934,7 +8920,6 @@ static int iwl4965_pci_probe(struct pci_dev *pdev, const struct pci_device_id *e ...@@ -8934,7 +8920,6 @@ static int iwl4965_pci_probe(struct pci_dev *pdev, const struct pci_device_id *e
goto out_iounmap; goto out_iounmap;
} }
#ifdef CONFIG_IWL4965_QOS
if (iwl4965_param_qos_enable) if (iwl4965_param_qos_enable)
priv->qos_data.qos_enable = 1; priv->qos_data.qos_enable = 1;
...@@ -8942,7 +8927,6 @@ static int iwl4965_pci_probe(struct pci_dev *pdev, const struct pci_device_id *e ...@@ -8942,7 +8927,6 @@ static int iwl4965_pci_probe(struct pci_dev *pdev, const struct pci_device_id *e
priv->qos_data.qos_active = 0; priv->qos_data.qos_active = 0;
priv->qos_data.qos_cap.val = 0; priv->qos_data.qos_cap.val = 0;
#endif /* CONFIG_IWL4965_QOS */
iwl4965_set_rxon_channel(priv, IEEE80211_BAND_2GHZ, 6); iwl4965_set_rxon_channel(priv, IEEE80211_BAND_2GHZ, 6);
iwl4965_setup_deferred_work(priv); iwl4965_setup_deferred_work(priv);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment