diff options
author | Emmanuel Grumbach <emmanuel.grumbach@intel.com> | 2008-04-24 14:55:20 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-05-07 15:02:22 -0400 |
commit | d4789efe5627858c212753bbac4316198f819486 (patch) | |
tree | 2b83cff15a6d613d9bd3cb54ab1c8943fab88996 /drivers/net/wireless/iwlwifi/iwl-4965.c | |
parent | a395b92024d9b8f9403c06f9ea8d425f1883d7d8 (diff) |
iwlwifi: move hw_rx_handler_setup to iwl-4965.c
This patch moves hw_rx_handler_setup to iwl-4965.c
Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-4965.c')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-4965.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-4965.c b/drivers/net/wireless/iwlwifi/iwl-4965.c index b1b7363bfdd4..258777366d29 100644 --- a/drivers/net/wireless/iwlwifi/iwl-4965.c +++ b/drivers/net/wireless/iwlwifi/iwl-4965.c | |||
@@ -4065,7 +4065,7 @@ int iwl4965_mac_ampdu_action(struct ieee80211_hw *hw, | |||
4065 | #endif /* CONFIG_IWL4965_HT */ | 4065 | #endif /* CONFIG_IWL4965_HT */ |
4066 | 4066 | ||
4067 | /* Set up 4965-specific Rx frame reply handlers */ | 4067 | /* Set up 4965-specific Rx frame reply handlers */ |
4068 | void iwl4965_hw_rx_handler_setup(struct iwl_priv *priv) | 4068 | static void iwl4965_rx_handler_setup(struct iwl_priv *priv) |
4069 | { | 4069 | { |
4070 | /* Legacy Rx frames */ | 4070 | /* Legacy Rx frames */ |
4071 | priv->rx_handlers[REPLY_RX] = iwl4965_rx_reply_rx; | 4071 | priv->rx_handlers[REPLY_RX] = iwl4965_rx_reply_rx; |
@@ -4119,6 +4119,7 @@ static struct iwl_lib_ops iwl4965_lib = { | |||
4119 | .free_shared_mem = iwl4965_free_shared_mem, | 4119 | .free_shared_mem = iwl4965_free_shared_mem, |
4120 | .txq_update_byte_cnt_tbl = iwl4965_txq_update_byte_cnt_tbl, | 4120 | .txq_update_byte_cnt_tbl = iwl4965_txq_update_byte_cnt_tbl, |
4121 | .hw_nic_init = iwl4965_hw_nic_init, | 4121 | .hw_nic_init = iwl4965_hw_nic_init, |
4122 | .rx_handler_setup = iwl4965_rx_handler_setup, | ||
4122 | .is_valid_rtc_data_addr = iwl4965_hw_valid_rtc_data_addr, | 4123 | .is_valid_rtc_data_addr = iwl4965_hw_valid_rtc_data_addr, |
4123 | .alive_notify = iwl4965_alive_notify, | 4124 | .alive_notify = iwl4965_alive_notify, |
4124 | .load_ucode = iwl4965_load_bsm, | 4125 | .load_ucode = iwl4965_load_bsm, |