Commit 50c1e9a9 authored by David Spinadel's avatar David Spinadel Committed by Wey-Yi Guy

iwlwifi: expose static methods for MVM use

To support hybrid state of MVM op_mode, most of the functioanallity
will be done using DVM functions.

When MVM will have independant live, the declarations will be removed
and the functions will be static back.
Signed-off-by: default avatarDavid Spinadel <david.spinadel@intel.com>
Signed-off-by: default avatarWey-Yi Guy <wey-yi.w.guy@intel.com>
parent cfd8544e
...@@ -177,8 +177,7 @@ static int iwlagn_disconn_pan(struct iwl_priv *priv, ...@@ -177,8 +177,7 @@ static int iwlagn_disconn_pan(struct iwl_priv *priv,
return ret; return ret;
} }
static void iwlagn_update_qos(struct iwl_priv *priv, void iwlagn_update_qos(struct iwl_priv *priv, struct iwl_rxon_context *ctx)
struct iwl_rxon_context *ctx)
{ {
int ret; int ret;
...@@ -205,7 +204,7 @@ static void iwlagn_update_qos(struct iwl_priv *priv, ...@@ -205,7 +204,7 @@ static void iwlagn_update_qos(struct iwl_priv *priv,
IWL_DEBUG_QUIET_RFKILL(priv, "Failed to update QoS\n"); IWL_DEBUG_QUIET_RFKILL(priv, "Failed to update QoS\n");
} }
static int iwlagn_update_beacon(struct iwl_priv *priv, int iwlagn_update_beacon(struct iwl_priv *priv,
struct ieee80211_vif *vif) struct ieee80211_vif *vif)
{ {
lockdep_assert_held(&priv->mutex); lockdep_assert_held(&priv->mutex);
...@@ -879,7 +878,7 @@ static int iwl_check_rxon_cmd(struct iwl_priv *priv, ...@@ -879,7 +878,7 @@ static int iwl_check_rxon_cmd(struct iwl_priv *priv,
* or is clearing the RXON_FILTER_ASSOC_MSK, then return 1 to indicate that * or is clearing the RXON_FILTER_ASSOC_MSK, then return 1 to indicate that
* a new tune (full RXON command, rather than RXON_ASSOC cmd) is required. * a new tune (full RXON command, rather than RXON_ASSOC cmd) is required.
*/ */
static int iwl_full_rxon_required(struct iwl_priv *priv, int iwl_full_rxon_required(struct iwl_priv *priv,
struct iwl_rxon_context *ctx) struct iwl_rxon_context *ctx)
{ {
const struct iwl_rxon_cmd *staging = &ctx->staging; const struct iwl_rxon_cmd *staging = &ctx->staging;
...@@ -1223,7 +1222,7 @@ int iwlagn_mac_config(struct ieee80211_hw *hw, u32 changed) ...@@ -1223,7 +1222,7 @@ int iwlagn_mac_config(struct ieee80211_hw *hw, u32 changed)
return ret; return ret;
} }
static void iwlagn_check_needed_chains(struct iwl_priv *priv, void iwlagn_check_needed_chains(struct iwl_priv *priv,
struct iwl_rxon_context *ctx, struct iwl_rxon_context *ctx,
struct ieee80211_bss_conf *bss_conf) struct ieee80211_bss_conf *bss_conf)
{ {
...@@ -1317,7 +1316,7 @@ static void iwlagn_check_needed_chains(struct iwl_priv *priv, ...@@ -1317,7 +1316,7 @@ static void iwlagn_check_needed_chains(struct iwl_priv *priv,
ht_conf->single_chain_sufficient = !need_multiple; ht_conf->single_chain_sufficient = !need_multiple;
} }
static void iwlagn_chain_noise_reset(struct iwl_priv *priv) void iwlagn_chain_noise_reset(struct iwl_priv *priv)
{ {
struct iwl_chain_noise_data *data = &priv->chain_noise_data; struct iwl_chain_noise_data *data = &priv->chain_noise_data;
int ret; int ret;
......
...@@ -597,7 +597,7 @@ static const u8 iwlagn_pan_queue_to_ac[] = { ...@@ -597,7 +597,7 @@ static const u8 iwlagn_pan_queue_to_ac[] = {
IEEE80211_AC_VO, IEEE80211_AC_VO,
}; };
static void iwl_init_context(struct iwl_priv *priv, u32 ucode_flags) void iwl_init_context(struct iwl_priv *priv, u32 ucode_flags)
{ {
int i; int i;
...@@ -664,7 +664,7 @@ static void iwl_init_context(struct iwl_priv *priv, u32 ucode_flags) ...@@ -664,7 +664,7 @@ static void iwl_init_context(struct iwl_priv *priv, u32 ucode_flags)
BUILD_BUG_ON(NUM_IWL_RXON_CTX != 2); BUILD_BUG_ON(NUM_IWL_RXON_CTX != 2);
} }
static void iwl_rf_kill_ct_config(struct iwl_priv *priv) void iwl_rf_kill_ct_config(struct iwl_priv *priv)
{ {
struct iwl_ct_kill_config cmd; struct iwl_ct_kill_config cmd;
struct iwl_ct_kill_throttling_config adv_cmd; struct iwl_ct_kill_throttling_config adv_cmd;
...@@ -745,7 +745,7 @@ static int iwlagn_send_tx_ant_config(struct iwl_priv *priv, u8 valid_tx_ant) ...@@ -745,7 +745,7 @@ static int iwlagn_send_tx_ant_config(struct iwl_priv *priv, u8 valid_tx_ant)
} }
} }
static void iwl_send_bt_config(struct iwl_priv *priv) void iwl_send_bt_config(struct iwl_priv *priv)
{ {
struct iwl_bt_cmd bt_cmd = { struct iwl_bt_cmd bt_cmd = {
.lead_time = BT_LEAD_TIME_DEF, .lead_time = BT_LEAD_TIME_DEF,
...@@ -1100,7 +1100,7 @@ static void iwlagn_disable_roc_work(struct work_struct *work) ...@@ -1100,7 +1100,7 @@ static void iwlagn_disable_roc_work(struct work_struct *work)
* *
*****************************************************************************/ *****************************************************************************/
static void iwl_setup_deferred_work(struct iwl_priv *priv) void iwl_setup_deferred_work(struct iwl_priv *priv)
{ {
priv->workqueue = create_singlethread_workqueue(DRV_NAME); priv->workqueue = create_singlethread_workqueue(DRV_NAME);
...@@ -1348,7 +1348,7 @@ static void iwl_free_geos(struct iwl_priv *priv) ...@@ -1348,7 +1348,7 @@ static void iwl_free_geos(struct iwl_priv *priv)
clear_bit(STATUS_GEO_CONFIGURED, &priv->status); clear_bit(STATUS_GEO_CONFIGURED, &priv->status);
} }
static int iwl_init_drv(struct iwl_priv *priv) int iwl_init_drv(struct iwl_priv *priv)
{ {
int ret; int ret;
...@@ -1411,7 +1411,7 @@ static int iwl_init_drv(struct iwl_priv *priv) ...@@ -1411,7 +1411,7 @@ static int iwl_init_drv(struct iwl_priv *priv)
return ret; return ret;
} }
static void iwl_uninit_drv(struct iwl_priv *priv) void iwl_uninit_drv(struct iwl_priv *priv)
{ {
iwl_free_geos(priv); iwl_free_geos(priv);
iwl_free_channel_map(priv); iwl_free_channel_map(priv);
...@@ -1424,7 +1424,7 @@ static void iwl_uninit_drv(struct iwl_priv *priv) ...@@ -1424,7 +1424,7 @@ static void iwl_uninit_drv(struct iwl_priv *priv)
#endif #endif
} }
static void iwl_set_hw_params(struct iwl_priv *priv) void iwl_set_hw_params(struct iwl_priv *priv)
{ {
if (cfg(priv)->ht_params) if (cfg(priv)->ht_params)
priv->hw_params.use_rts_for_aggregation = priv->hw_params.use_rts_for_aggregation =
...@@ -1439,7 +1439,7 @@ static void iwl_set_hw_params(struct iwl_priv *priv) ...@@ -1439,7 +1439,7 @@ static void iwl_set_hw_params(struct iwl_priv *priv)
static void iwl_debug_config(struct iwl_priv *priv) void iwl_debug_config(struct iwl_priv *priv)
{ {
dev_printk(KERN_INFO, trans(priv)->dev, "CONFIG_IWLWIFI_DEBUG " dev_printk(KERN_INFO, trans(priv)->dev, "CONFIG_IWLWIFI_DEBUG "
#ifdef CONFIG_IWLWIFI_DEBUG #ifdef CONFIG_IWLWIFI_DEBUG
...@@ -1752,7 +1752,7 @@ static struct iwl_op_mode *iwl_op_mode_dvm_start(struct iwl_trans *trans, ...@@ -1752,7 +1752,7 @@ static struct iwl_op_mode *iwl_op_mode_dvm_start(struct iwl_trans *trans,
return op_mode; return op_mode;
} }
static void iwl_op_mode_dvm_stop(struct iwl_op_mode *op_mode) void iwl_op_mode_dvm_stop(struct iwl_op_mode *op_mode)
{ {
struct iwl_priv *priv = IWL_OP_MODE_GET_DVM(op_mode); struct iwl_priv *priv = IWL_OP_MODE_GET_DVM(op_mode);
...@@ -2217,7 +2217,7 @@ static void iwlagn_fw_error(struct iwl_priv *priv, bool ondemand) ...@@ -2217,7 +2217,7 @@ static void iwlagn_fw_error(struct iwl_priv *priv, bool ondemand)
} }
} }
static void iwl_nic_error(struct iwl_op_mode *op_mode) void iwl_nic_error(struct iwl_op_mode *op_mode)
{ {
struct iwl_priv *priv = IWL_OP_MODE_GET_DVM(op_mode); struct iwl_priv *priv = IWL_OP_MODE_GET_DVM(op_mode);
...@@ -2230,7 +2230,7 @@ static void iwl_nic_error(struct iwl_op_mode *op_mode) ...@@ -2230,7 +2230,7 @@ static void iwl_nic_error(struct iwl_op_mode *op_mode)
iwlagn_fw_error(priv, false); iwlagn_fw_error(priv, false);
} }
static void iwl_cmd_queue_full(struct iwl_op_mode *op_mode) void iwl_cmd_queue_full(struct iwl_op_mode *op_mode)
{ {
struct iwl_priv *priv = IWL_OP_MODE_GET_DVM(op_mode); struct iwl_priv *priv = IWL_OP_MODE_GET_DVM(op_mode);
...@@ -2240,7 +2240,7 @@ static void iwl_cmd_queue_full(struct iwl_op_mode *op_mode) ...@@ -2240,7 +2240,7 @@ static void iwl_cmd_queue_full(struct iwl_op_mode *op_mode)
} }
} }
static void iwl_nic_config(struct iwl_op_mode *op_mode) void iwl_nic_config(struct iwl_op_mode *op_mode)
{ {
struct iwl_priv *priv = IWL_OP_MODE_GET_DVM(op_mode); struct iwl_priv *priv = IWL_OP_MODE_GET_DVM(op_mode);
...@@ -2255,7 +2255,7 @@ static void iwl_wimax_active(struct iwl_op_mode *op_mode) ...@@ -2255,7 +2255,7 @@ static void iwl_wimax_active(struct iwl_op_mode *op_mode)
IWL_ERR(priv, "RF is used by WiMAX\n"); IWL_ERR(priv, "RF is used by WiMAX\n");
} }
static void iwl_stop_sw_queue(struct iwl_op_mode *op_mode, int queue) void iwl_stop_sw_queue(struct iwl_op_mode *op_mode, int queue)
{ {
struct iwl_priv *priv = IWL_OP_MODE_GET_DVM(op_mode); struct iwl_priv *priv = IWL_OP_MODE_GET_DVM(op_mode);
int ac = priv->queue_to_ac[queue]; int ac = priv->queue_to_ac[queue];
...@@ -2274,7 +2274,7 @@ static void iwl_stop_sw_queue(struct iwl_op_mode *op_mode, int queue) ...@@ -2274,7 +2274,7 @@ static void iwl_stop_sw_queue(struct iwl_op_mode *op_mode, int queue)
ieee80211_stop_queue(priv->hw, ac); ieee80211_stop_queue(priv->hw, ac);
} }
static void iwl_wake_sw_queue(struct iwl_op_mode *op_mode, int queue) void iwl_wake_sw_queue(struct iwl_op_mode *op_mode, int queue)
{ {
struct iwl_priv *priv = IWL_OP_MODE_GET_DVM(op_mode); struct iwl_priv *priv = IWL_OP_MODE_GET_DVM(op_mode);
int ac = priv->queue_to_ac[queue]; int ac = priv->queue_to_ac[queue];
...@@ -2314,7 +2314,7 @@ void iwlagn_lift_passive_no_rx(struct iwl_priv *priv) ...@@ -2314,7 +2314,7 @@ void iwlagn_lift_passive_no_rx(struct iwl_priv *priv)
priv->passive_no_rx = false; priv->passive_no_rx = false;
} }
static void iwl_free_skb(struct iwl_op_mode *op_mode, struct sk_buff *skb) void iwl_free_skb(struct iwl_op_mode *op_mode, struct sk_buff *skb)
{ {
struct ieee80211_tx_info *info; struct ieee80211_tx_info *info;
...@@ -2323,7 +2323,7 @@ static void iwl_free_skb(struct iwl_op_mode *op_mode, struct sk_buff *skb) ...@@ -2323,7 +2323,7 @@ static void iwl_free_skb(struct iwl_op_mode *op_mode, struct sk_buff *skb)
dev_kfree_skb_any(skb); dev_kfree_skb_any(skb);
} }
static void iwl_set_hw_rfkill_state(struct iwl_op_mode *op_mode, bool state) void iwl_set_hw_rfkill_state(struct iwl_op_mode *op_mode, bool state)
{ {
struct iwl_priv *priv = IWL_OP_MODE_GET_DVM(op_mode); struct iwl_priv *priv = IWL_OP_MODE_GET_DVM(op_mode);
......
...@@ -495,4 +495,85 @@ do { \ ...@@ -495,4 +495,85 @@ do { \
} while (0) } while (0)
#endif /* CONFIG_IWLWIFI_DEBUG */ #endif /* CONFIG_IWLWIFI_DEBUG */
/* API method exported for mvm hybrid state */
void iwl_setup_deferred_work(struct iwl_priv *priv);
int iwl_send_wimax_coex(struct iwl_priv *priv);
int iwl_send_bt_env(struct iwl_priv *priv, u8 action, u8 type);
void iwl_debug_config(struct iwl_priv *priv);
int iwl_alloc_traffic_mem(struct iwl_priv *priv);
void iwl_set_hw_params(struct iwl_priv *priv);
void iwl_init_context(struct iwl_priv *priv, u32 ucode_flags);
int iwl_init_drv(struct iwl_priv *priv);
void iwl_uninit_drv(struct iwl_priv *priv);
void iwl_send_bt_config(struct iwl_priv *priv);
void iwl_rf_kill_ct_config(struct iwl_priv *priv);
int iwl_setup_interface(struct iwl_priv *priv, struct iwl_rxon_context *ctx);
void iwl_teardown_interface(struct iwl_priv *priv,
struct ieee80211_vif *vif,
bool mode_change);
int iwl_full_rxon_required(struct iwl_priv *priv, struct iwl_rxon_context *ctx);
void iwlagn_update_qos(struct iwl_priv *priv, struct iwl_rxon_context *ctx);
void iwlagn_check_needed_chains(struct iwl_priv *priv,
struct iwl_rxon_context *ctx,
struct ieee80211_bss_conf *bss_conf);
void iwlagn_chain_noise_reset(struct iwl_priv *priv);
int iwlagn_update_beacon(struct iwl_priv *priv,
struct ieee80211_vif *vif);
void iwl_tt_handler(struct iwl_priv *priv);
void iwl_op_mode_dvm_stop(struct iwl_op_mode *op_mode);
void iwl_stop_sw_queue(struct iwl_op_mode *op_mode, int queue);
void iwl_set_hw_rfkill_state(struct iwl_op_mode *op_mode, bool state);
void iwl_free_skb(struct iwl_op_mode *op_mode, struct sk_buff *skb);
void iwl_nic_error(struct iwl_op_mode *op_mode);
void iwl_cmd_queue_full(struct iwl_op_mode *op_mode);
void iwl_nic_config(struct iwl_op_mode *op_mode);
int iwlagn_mac_set_tim(struct ieee80211_hw *hw,
struct ieee80211_sta *sta, bool set);
void iwlagn_mac_rssi_callback(struct ieee80211_hw *hw,
enum ieee80211_rssi_event rssi_event);
int iwlagn_mac_cancel_remain_on_channel(struct ieee80211_hw *hw);
int iwlagn_mac_tx_last_beacon(struct ieee80211_hw *hw);
void iwlagn_mac_flush(struct ieee80211_hw *hw, bool drop);
void iwl_wake_sw_queue(struct iwl_op_mode *op_mode, int queue);
void iwlagn_mac_channel_switch(struct ieee80211_hw *hw,
struct ieee80211_channel_switch *ch_switch);
int iwlagn_mac_sta_state(struct ieee80211_hw *hw,
struct ieee80211_vif *vif,
struct ieee80211_sta *sta,
enum ieee80211_sta_state old_state,
enum ieee80211_sta_state new_state);
int iwlagn_mac_ampdu_action(struct ieee80211_hw *hw,
struct ieee80211_vif *vif,
enum ieee80211_ampdu_mlme_action action,
struct ieee80211_sta *sta, u16 tid, u16 *ssn,
u8 buf_size);
int iwlagn_mac_hw_scan(struct ieee80211_hw *hw,
struct ieee80211_vif *vif,
struct cfg80211_scan_request *req);
void iwlagn_mac_sta_notify(struct ieee80211_hw *hw,
struct ieee80211_vif *vif,
enum sta_notify_cmd cmd,
struct ieee80211_sta *sta);
void iwlagn_configure_filter(struct ieee80211_hw *hw,
unsigned int changed_flags,
unsigned int *total_flags,
u64 multicast);
int iwlagn_mac_conf_tx(struct ieee80211_hw *hw,
struct ieee80211_vif *vif, u16 queue,
const struct ieee80211_tx_queue_params *params);
void iwlagn_mac_set_rekey_data(struct ieee80211_hw *hw,
struct ieee80211_vif *vif,
struct cfg80211_gtk_rekey_data *data);
void iwlagn_mac_update_tkip_key(struct ieee80211_hw *hw,
struct ieee80211_vif *vif,
struct ieee80211_key_conf *keyconf,
struct ieee80211_sta *sta,
u32 iv32, u16 *phase1key);
int iwlagn_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
struct ieee80211_vif *vif,
struct ieee80211_sta *sta,
struct ieee80211_key_conf *key);
void iwlagn_mac_stop(struct ieee80211_hw *hw);
void iwlagn_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb);
int iwlagn_mac_suspend(struct ieee80211_hw *hw, struct cfg80211_wowlan *wowlan);
#endif /* __iwl_agn_h__ */ #endif /* __iwl_agn_h__ */
...@@ -333,7 +333,7 @@ static int iwlagn_mac_start(struct ieee80211_hw *hw) ...@@ -333,7 +333,7 @@ static int iwlagn_mac_start(struct ieee80211_hw *hw)
return 0; return 0;
} }
static void iwlagn_mac_stop(struct ieee80211_hw *hw) void iwlagn_mac_stop(struct ieee80211_hw *hw)
{ {
struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw); struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
...@@ -361,7 +361,7 @@ static void iwlagn_mac_stop(struct ieee80211_hw *hw) ...@@ -361,7 +361,7 @@ static void iwlagn_mac_stop(struct ieee80211_hw *hw)
IWL_DEBUG_MAC80211(priv, "leave\n"); IWL_DEBUG_MAC80211(priv, "leave\n");
} }
static void iwlagn_mac_set_rekey_data(struct ieee80211_hw *hw, void iwlagn_mac_set_rekey_data(struct ieee80211_hw *hw,
struct ieee80211_vif *vif, struct ieee80211_vif *vif,
struct cfg80211_gtk_rekey_data *data) struct cfg80211_gtk_rekey_data *data)
{ {
...@@ -389,8 +389,7 @@ static void iwlagn_mac_set_rekey_data(struct ieee80211_hw *hw, ...@@ -389,8 +389,7 @@ static void iwlagn_mac_set_rekey_data(struct ieee80211_hw *hw,
#ifdef CONFIG_PM_SLEEP #ifdef CONFIG_PM_SLEEP
static int iwlagn_mac_suspend(struct ieee80211_hw *hw, int iwlagn_mac_suspend(struct ieee80211_hw *hw, struct cfg80211_wowlan *wowlan)
struct cfg80211_wowlan *wowlan)
{ {
struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw); struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS]; struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
...@@ -499,7 +498,7 @@ static int iwlagn_mac_resume(struct ieee80211_hw *hw) ...@@ -499,7 +498,7 @@ static int iwlagn_mac_resume(struct ieee80211_hw *hw)
#endif #endif
static void iwlagn_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb) void iwlagn_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
{ {
struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw); struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
...@@ -510,7 +509,7 @@ static void iwlagn_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb) ...@@ -510,7 +509,7 @@ static void iwlagn_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
dev_kfree_skb_any(skb); dev_kfree_skb_any(skb);
} }
static void iwlagn_mac_update_tkip_key(struct ieee80211_hw *hw, void iwlagn_mac_update_tkip_key(struct ieee80211_hw *hw,
struct ieee80211_vif *vif, struct ieee80211_vif *vif,
struct ieee80211_key_conf *keyconf, struct ieee80211_key_conf *keyconf,
struct ieee80211_sta *sta, struct ieee80211_sta *sta,
...@@ -521,7 +520,7 @@ static void iwlagn_mac_update_tkip_key(struct ieee80211_hw *hw, ...@@ -521,7 +520,7 @@ static void iwlagn_mac_update_tkip_key(struct ieee80211_hw *hw,
iwl_update_tkip_key(priv, vif, keyconf, sta, iv32, phase1key); iwl_update_tkip_key(priv, vif, keyconf, sta, iv32, phase1key);
} }
static int iwlagn_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd, int iwlagn_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
struct ieee80211_vif *vif, struct ieee80211_vif *vif,
struct ieee80211_sta *sta, struct ieee80211_sta *sta,
struct ieee80211_key_conf *key) struct ieee80211_key_conf *key)
...@@ -624,7 +623,7 @@ static int iwlagn_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd, ...@@ -624,7 +623,7 @@ static int iwlagn_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
return ret; return ret;
} }
static int iwlagn_mac_ampdu_action(struct ieee80211_hw *hw, int iwlagn_mac_ampdu_action(struct ieee80211_hw *hw,
struct ieee80211_vif *vif, struct ieee80211_vif *vif,
enum ieee80211_ampdu_mlme_action action, enum ieee80211_ampdu_mlme_action action,
struct ieee80211_sta *sta, u16 tid, u16 *ssn, struct ieee80211_sta *sta, u16 tid, u16 *ssn,
...@@ -750,7 +749,7 @@ static int iwlagn_mac_sta_remove(struct ieee80211_hw *hw, ...@@ -750,7 +749,7 @@ static int iwlagn_mac_sta_remove(struct ieee80211_hw *hw,
return ret; return ret;
} }
static int iwlagn_mac_sta_state(struct ieee80211_hw *hw, int iwlagn_mac_sta_state(struct ieee80211_hw *hw,
struct ieee80211_vif *vif, struct ieee80211_vif *vif,
struct ieee80211_sta *sta, struct ieee80211_sta *sta,
enum ieee80211_sta_state old_state, enum ieee80211_sta_state old_state,
...@@ -833,7 +832,7 @@ static int iwlagn_mac_sta_state(struct ieee80211_hw *hw, ...@@ -833,7 +832,7 @@ static int iwlagn_mac_sta_state(struct ieee80211_hw *hw,
return ret; return ret;
} }
static void iwlagn_mac_channel_switch(struct ieee80211_hw *hw, void iwlagn_mac_channel_switch(struct ieee80211_hw *hw,
struct ieee80211_channel_switch *ch_switch) struct ieee80211_channel_switch *ch_switch)
{ {
struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw); struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
...@@ -929,7 +928,7 @@ void iwl_chswitch_done(struct iwl_priv *priv, bool is_success) ...@@ -929,7 +928,7 @@ void iwl_chswitch_done(struct iwl_priv *priv, bool is_success)
ieee80211_chswitch_done(ctx->vif, is_success); ieee80211_chswitch_done(ctx->vif, is_success);
} }
static void iwlagn_configure_filter(struct ieee80211_hw *hw, void iwlagn_configure_filter(struct ieee80211_hw *hw,
unsigned int changed_flags, unsigned int changed_flags,
unsigned int *total_flags, unsigned int *total_flags,
u64 multicast) u64 multicast)
...@@ -979,7 +978,7 @@ static void iwlagn_configure_filter(struct ieee80211_hw *hw, ...@@ -979,7 +978,7 @@ static void iwlagn_configure_filter(struct ieee80211_hw *hw,
FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL; FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL;
} }
static void iwlagn_mac_flush(struct ieee80211_hw *hw, bool drop) void iwlagn_mac_flush(struct ieee80211_hw *hw, bool drop)
{ {
struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw); struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
...@@ -1106,7 +1105,7 @@ static int iwlagn_mac_remain_on_channel(struct ieee80211_hw *hw, ...@@ -1106,7 +1105,7 @@ static int iwlagn_mac_remain_on_channel(struct ieee80211_hw *hw,
return err; return err;
} }
static int iwlagn_mac_cancel_remain_on_channel(struct ieee80211_hw *hw) int iwlagn_mac_cancel_remain_on_channel(struct ieee80211_hw *hw)
{ {
struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw); struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
...@@ -1123,7 +1122,7 @@ static int iwlagn_mac_cancel_remain_on_channel(struct ieee80211_hw *hw) ...@@ -1123,7 +1122,7 @@ static int iwlagn_mac_cancel_remain_on_channel(struct ieee80211_hw *hw)
return 0; return 0;
} }
static void iwlagn_mac_rssi_callback(struct ieee80211_hw *hw, void iwlagn_mac_rssi_callback(struct ieee80211_hw *hw,
enum ieee80211_rssi_event rssi_event) enum ieee80211_rssi_event rssi_event)
{ {
struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw); struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
...@@ -1148,7 +1147,7 @@ static void iwlagn_mac_rssi_callback(struct ieee80211_hw *hw, ...@@ -1148,7 +1147,7 @@ static void iwlagn_mac_rssi_callback(struct ieee80211_hw *hw,
IWL_DEBUG_MAC80211(priv, "leave\n"); IWL_DEBUG_MAC80211(priv, "leave\n");
} }
static int iwlagn_mac_set_tim(struct ieee80211_hw *hw, int iwlagn_mac_set_tim(struct ieee80211_hw *hw,
struct ieee80211_sta *sta, bool set) struct ieee80211_sta *sta, bool set)
{ {
struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw); struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
...@@ -1158,7 +1157,7 @@ static int iwlagn_mac_set_tim(struct ieee80211_hw *hw, ...@@ -1158,7 +1157,7 @@ static int iwlagn_mac_set_tim(struct ieee80211_hw *hw,
return 0; return 0;
} }
static int iwlagn_mac_conf_tx(struct ieee80211_hw *hw, int iwlagn_mac_conf_tx(struct ieee80211_hw *hw,
struct ieee80211_vif *vif, u16 queue, struct ieee80211_vif *vif, u16 queue,
const struct ieee80211_tx_queue_params *params) const struct ieee80211_tx_queue_params *params)
{ {
...@@ -1202,7 +1201,7 @@ static int iwlagn_mac_conf_tx(struct ieee80211_hw *hw, ...@@ -1202,7 +1201,7 @@ static int iwlagn_mac_conf_tx(struct ieee80211_hw *hw,
return 0; return 0;
} }
static int iwlagn_mac_tx_last_beacon(struct ieee80211_hw *hw) int iwlagn_mac_tx_last_beacon(struct ieee80211_hw *hw)
{ {
struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw); struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
...@@ -1218,8 +1217,7 @@ static int iwl_set_mode(struct iwl_priv *priv, struct iwl_rxon_context *ctx) ...@@ -1218,8 +1217,7 @@ static int iwl_set_mode(struct iwl_priv *priv, struct iwl_rxon_context *ctx)
return iwlagn_commit_rxon(priv, ctx); return iwlagn_commit_rxon(priv, ctx);
} }
static int iwl_setup_interface(struct iwl_priv *priv, int iwl_setup_interface(struct iwl_priv *priv, struct iwl_rxon_context *ctx)
struct iwl_rxon_context *ctx)
{ {
struct ieee80211_vif *vif = ctx->vif; struct ieee80211_vif *vif = ctx->vif;
int err; int err;
...@@ -1322,7 +1320,7 @@ static int iwlagn_mac_add_interface(struct ieee80211_hw *hw, ...@@ -1322,7 +1320,7 @@ static int iwlagn_mac_add_interface(struct ieee80211_hw *hw,
return err; return err;
} }
static void iwl_teardown_interface(struct iwl_priv *priv, void iwl_teardown_interface(struct iwl_priv *priv,
struct ieee80211_vif *vif, struct ieee80211_vif *vif,
bool mode_change) bool mode_change)
{ {
...@@ -1465,7 +1463,7 @@ static int iwlagn_mac_change_interface(struct ieee80211_hw *hw, ...@@ -1465,7 +1463,7 @@ static int iwlagn_mac_change_interface(struct ieee80211_hw *hw,
return err; return err;
} }
static int iwlagn_mac_hw_scan(struct ieee80211_hw *hw, int iwlagn_mac_hw_scan(struct ieee80211_hw *hw,
struct ieee80211_vif *vif, struct ieee80211_vif *vif,
struct cfg80211_scan_request *req) struct cfg80211_scan_request *req)
{ {
...@@ -1522,7 +1520,7 @@ static void iwl_sta_modify_ps_wake(struct iwl_priv *priv, int sta_id) ...@@ -1522,7 +1520,7 @@ static void iwl_sta_modify_ps_wake(struct iwl_priv *priv, int sta_id)
iwl_send_add_sta(priv, &cmd, CMD_ASYNC); iwl_send_add_sta(priv, &cmd, CMD_ASYNC);
} }
static void iwlagn_mac_sta_notify(struct ieee80211_hw *hw, void iwlagn_mac_sta_notify(struct ieee80211_hw *hw,
struct ieee80211_vif *vif, struct ieee80211_vif *vif,
enum sta_notify_cmd cmd, enum sta_notify_cmd cmd,
struct ieee80211_sta *sta) struct ieee80211_sta *sta)
......
...@@ -178,7 +178,7 @@ int iwl_init_alive_start(struct iwl_priv *priv) ...@@ -178,7 +178,7 @@ int iwl_init_alive_start(struct iwl_priv *priv)
return 0; return 0;
} }
static int iwl_send_wimax_coex(struct iwl_priv *priv) int iwl_send_wimax_coex(struct iwl_priv *priv)
{ {
struct iwl_wimax_coex_cmd coex_cmd; struct iwl_wimax_coex_cmd coex_cmd;
......
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