|
@@ -1084,6 +1084,7 @@ static void iwl_irq_tasklet(struct iwl_priv *priv)
|
|
|
u32 inta = 0;
|
|
|
u32 handled = 0;
|
|
|
unsigned long flags;
|
|
|
+ u32 i;
|
|
|
#ifdef CONFIG_IWLWIFI_DEBUG
|
|
|
u32 inta_mask;
|
|
|
#endif
|
|
@@ -1194,12 +1195,8 @@ static void iwl_irq_tasklet(struct iwl_priv *priv)
|
|
|
if (inta & CSR_INT_BIT_WAKEUP) {
|
|
|
IWL_DEBUG_ISR(priv, "Wakeup interrupt\n");
|
|
|
iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
|
|
|
- iwl_txq_update_write_ptr(priv, &priv->txq[0]);
|
|
|
- iwl_txq_update_write_ptr(priv, &priv->txq[1]);
|
|
|
- iwl_txq_update_write_ptr(priv, &priv->txq[2]);
|
|
|
- iwl_txq_update_write_ptr(priv, &priv->txq[3]);
|
|
|
- iwl_txq_update_write_ptr(priv, &priv->txq[4]);
|
|
|
- iwl_txq_update_write_ptr(priv, &priv->txq[5]);
|
|
|
+ for (i = 0; i < priv->hw_params.max_txq_num; i++)
|
|
|
+ iwl_txq_update_write_ptr(priv, &priv->txq[i]);
|
|
|
|
|
|
priv->isr_stats.wakeup++;
|
|
|
|