diff options
author | Tomas Winkler <tomas.winkler@intel.com> | 2008-05-15 01:53:57 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-05-21 21:47:53 -0400 |
commit | 443cfd457f780e40ceab7e00fbb6a56882848834 (patch) | |
tree | 6085149d4636bf3f7048223579b71512932122c1 /drivers/net/wireless/iwlwifi/iwl-dev.h | |
parent | 39130df32adf8272373c03c8c2499cd2a1b4c5cf (diff) |
iwlwifi: rename iwl4965_queue to iwl_queue
This patch renames iwl4965_queue to iwl_queue.
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-dev.h')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-dev.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-dev.h b/drivers/net/wireless/iwlwifi/iwl-dev.h index 5dccc5a8fa94..cf992240756a 100644 --- a/drivers/net/wireless/iwlwifi/iwl-dev.h +++ b/drivers/net/wireless/iwlwifi/iwl-dev.h | |||
@@ -102,7 +102,7 @@ struct iwl_rx_mem_buffer { | |||
102 | * | 102 | * |
103 | * Contains common data for Rx and Tx queues | 103 | * Contains common data for Rx and Tx queues |
104 | */ | 104 | */ |
105 | struct iwl4965_queue { | 105 | struct iwl_queue { |
106 | int n_bd; /* number of BDs in this queue */ | 106 | int n_bd; /* number of BDs in this queue */ |
107 | int write_ptr; /* 1-st empty entry (index) host_w*/ | 107 | int write_ptr; /* 1-st empty entry (index) host_w*/ |
108 | int read_ptr; /* last used entry (index) host_r*/ | 108 | int read_ptr; /* last used entry (index) host_r*/ |
@@ -137,7 +137,7 @@ struct iwl4965_tx_info { | |||
137 | * descriptors) and required locking structures. | 137 | * descriptors) and required locking structures. |
138 | */ | 138 | */ |
139 | struct iwl_tx_queue { | 139 | struct iwl_tx_queue { |
140 | struct iwl4965_queue q; | 140 | struct iwl_queue q; |
141 | struct iwl_tfd_frame *bd; | 141 | struct iwl_tfd_frame *bd; |
142 | struct iwl_cmd *cmd; | 142 | struct iwl_cmd *cmd; |
143 | dma_addr_t dma_addr_cmd; | 143 | dma_addr_t dma_addr_cmd; |
@@ -721,7 +721,7 @@ extern u8 iwl_find_station(struct iwl_priv *priv, const u8 *bssid); | |||
721 | 721 | ||
722 | extern int iwl4965_hw_channel_switch(struct iwl_priv *priv, u16 channel); | 722 | extern int iwl4965_hw_channel_switch(struct iwl_priv *priv, u16 channel); |
723 | extern int iwl4965_tx_queue_reclaim(struct iwl_priv *priv, int txq_id, int index); | 723 | extern int iwl4965_tx_queue_reclaim(struct iwl_priv *priv, int txq_id, int index); |
724 | extern int iwl4965_queue_space(const struct iwl4965_queue *q); | 724 | extern int iwl_queue_space(const struct iwl_queue *q); |
725 | struct iwl_priv; | 725 | struct iwl_priv; |
726 | 726 | ||
727 | extern void iwl4965_radio_kill_sw(struct iwl_priv *priv, int disable_radio); | 727 | extern void iwl4965_radio_kill_sw(struct iwl_priv *priv, int disable_radio); |