diff options
author | Winkler, Tomas <tomas.winkler@intel.com> | 2009-01-08 13:19:55 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-01-29 16:00:13 -0500 |
commit | 625a381ab870b190c1899c08467c0e6dcc5d94d4 (patch) | |
tree | d247031a25646333f2403a7ca37d3db961433aee /drivers/net/wireless/iwlwifi/iwl-3945.c | |
parent | 37d68317add2b769ad232a5d199bece41c59e13f (diff) |
iwl3945: kill iwl3945_x2_queue_used
This patch replaces iwl3945_x2_queue_used with iwl_queue_used.
Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: Zhu Yi <yi.zhu@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-3945.c')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-3945.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-3945.c b/drivers/net/wireless/iwlwifi/iwl-3945.c index 24d818d1b06b..db7b949020c2 100644 --- a/drivers/net/wireless/iwlwifi/iwl-3945.c +++ b/drivers/net/wireless/iwlwifi/iwl-3945.c | |||
@@ -344,7 +344,7 @@ static void iwl3945_rx_reply_tx(struct iwl_priv *priv, | |||
344 | int rate_idx; | 344 | int rate_idx; |
345 | int fail; | 345 | int fail; |
346 | 346 | ||
347 | if ((index >= txq->q.n_bd) || (iwl3945_x2_queue_used(&txq->q, index) == 0)) { | 347 | if ((index >= txq->q.n_bd) || (iwl_queue_used(&txq->q, index) == 0)) { |
348 | IWL_ERR(priv, "Read index for DMA queue txq_id (%d) index %d " | 348 | IWL_ERR(priv, "Read index for DMA queue txq_id (%d) index %d " |
349 | "is out of range [0-%d] %d %d\n", txq_id, | 349 | "is out of range [0-%d] %d %d\n", txq_id, |
350 | index, txq->q.n_bd, txq->q.write_ptr, | 350 | index, txq->q.n_bd, txq->q.write_ptr, |