diff options
author | Wey-Yi Guy <wey-yi.w.guy@intel.com> | 2010-06-14 20:09:53 -0400 |
---|---|---|
committer | Reinette Chatre <reinette.chatre@intel.com> | 2010-06-21 13:47:12 -0400 |
commit | 278fc73c0c6014bc2f55bce898bdeaa322bf4aba (patch) | |
tree | 9b27447d23b0c07aea6cd886f074392cb1de1539 /drivers/net/wireless/iwlwifi/iwl-core.h | |
parent | 8756371589e7d3ad15f1a385e1c09f5ae706b75e (diff) |
iwlwifi: move agn specific rx related code to iwl-agn-rx.c
To avoid having unnecessary functions in iwlcore.ko, those that
are not shared by agn and 3945, move agn specific rx related code
to iwl-agn-rx.c.
Signed-off-by: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Signed-off-by: Reinette Chatre <reinette.chatre@intel.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-core.h')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-core.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-core.h b/drivers/net/wireless/iwlwifi/iwl-core.h index 76288c56a7d..1c09dc85181 100644 --- a/drivers/net/wireless/iwlwifi/iwl-core.h +++ b/drivers/net/wireless/iwlwifi/iwl-core.h | |||
@@ -455,20 +455,12 @@ void iwl_rx_queue_update_write_ptr(struct iwl_priv *priv, | |||
455 | int iwl_rx_queue_space(const struct iwl_rx_queue *q); | 455 | int iwl_rx_queue_space(const struct iwl_rx_queue *q); |
456 | void iwl_tx_cmd_complete(struct iwl_priv *priv, struct iwl_rx_mem_buffer *rxb); | 456 | void iwl_tx_cmd_complete(struct iwl_priv *priv, struct iwl_rx_mem_buffer *rxb); |
457 | /* Handlers */ | 457 | /* Handlers */ |
458 | void iwl_rx_missed_beacon_notif(struct iwl_priv *priv, | ||
459 | struct iwl_rx_mem_buffer *rxb); | ||
460 | void iwl_rx_spectrum_measure_notif(struct iwl_priv *priv, | 458 | void iwl_rx_spectrum_measure_notif(struct iwl_priv *priv, |
461 | struct iwl_rx_mem_buffer *rxb); | 459 | struct iwl_rx_mem_buffer *rxb); |
462 | bool iwl_good_plcp_health(struct iwl_priv *priv, | ||
463 | struct iwl_rx_packet *pkt); | ||
464 | bool iwl_good_ack_health(struct iwl_priv *priv, | 460 | bool iwl_good_ack_health(struct iwl_priv *priv, |
465 | struct iwl_rx_packet *pkt); | 461 | struct iwl_rx_packet *pkt); |
466 | void iwl_recover_from_statistics(struct iwl_priv *priv, | 462 | void iwl_recover_from_statistics(struct iwl_priv *priv, |
467 | struct iwl_rx_packet *pkt); | 463 | struct iwl_rx_packet *pkt); |
468 | void iwl_rx_statistics(struct iwl_priv *priv, | ||
469 | struct iwl_rx_mem_buffer *rxb); | ||
470 | void iwl_reply_statistics(struct iwl_priv *priv, | ||
471 | struct iwl_rx_mem_buffer *rxb); | ||
472 | void iwl_chswitch_done(struct iwl_priv *priv, bool is_success); | 464 | void iwl_chswitch_done(struct iwl_priv *priv, bool is_success); |
473 | void iwl_rx_csa(struct iwl_priv *priv, struct iwl_rx_mem_buffer *rxb); | 465 | void iwl_rx_csa(struct iwl_priv *priv, struct iwl_rx_mem_buffer *rxb); |
474 | 466 | ||