diff options
author | Ron Rindjunsky <ron.rindjunsky@intel.com> | 2008-05-15 01:54:11 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-05-21 21:48:03 -0400 |
commit | b600e4e1c5cd8928fef83bb983ab76c9a6f655bc (patch) | |
tree | a38b4d6cdf3c4787fea157e4a1704cc376204001 /drivers/net/wireless | |
parent | 3647074973e70d0872b96ada27bbbb71fd1f628c (diff) |
iwlwifi: add rx_handlers stub for iwl5000
This patch adds rx_handler_setup stub to iwl5000.
Signed-off-by: Ron Rindjunsky <ron.rindjunsky@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')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-5000.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-5000.c b/drivers/net/wireless/iwlwifi/iwl-5000.c index d155247d2466..00ad360fc5e5 100644 --- a/drivers/net/wireless/iwlwifi/iwl-5000.c +++ b/drivers/net/wireless/iwlwifi/iwl-5000.c | |||
@@ -464,6 +464,10 @@ static u16 iwl5000_get_hcmd_size(u8 cmd_id, u16 len) | |||
464 | return len; | 464 | return len; |
465 | } | 465 | } |
466 | 466 | ||
467 | static void iwl5000_rx_handler_setup(struct iwl_priv *priv) | ||
468 | { | ||
469 | } | ||
470 | |||
467 | static struct iwl_hcmd_ops iwl5000_hcmd = { | 471 | static struct iwl_hcmd_ops iwl5000_hcmd = { |
468 | }; | 472 | }; |
469 | 473 | ||
@@ -483,6 +487,7 @@ static struct iwl_lib_ops iwl5000_lib = { | |||
483 | .shared_mem_rx_idx = iwl5000_shared_mem_rx_idx, | 487 | .shared_mem_rx_idx = iwl5000_shared_mem_rx_idx, |
484 | .txq_update_byte_cnt_tbl = iwl5000_txq_update_byte_cnt_tbl, | 488 | .txq_update_byte_cnt_tbl = iwl5000_txq_update_byte_cnt_tbl, |
485 | .disable_tx_fifo = iwl5000_disable_tx_fifo, | 489 | .disable_tx_fifo = iwl5000_disable_tx_fifo, |
490 | .rx_handler_setup = iwl5000_rx_handler_setup, | ||
486 | .apm_ops = { | 491 | .apm_ops = { |
487 | .init = iwl5000_apm_init, | 492 | .init = iwl5000_apm_init, |
488 | .config = iwl5000_nic_config, | 493 | .config = iwl5000_nic_config, |