Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 159359
b: refs/heads/master
c: 8784d2e
h: refs/heads/master
i:
  159357: 040929f
  159355: dfc4e51
  159351: 18b5ddc
  159343: 0c78f4a
  159327: da85d4c
  159295: 3a34d69
  159231: 040bb7e
v: v3
  • Loading branch information
Bob Copeland authored and John W. Linville committed Aug 4, 2009
1 parent 6d0e8a5 commit a80d9ac
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 7e2ce646fc0acc99837f73d39528493e146d1dcc
refs/heads/master: 8784d2ee92fc835bf18dd5096f00ec9a48dc0590
5 changes: 4 additions & 1 deletion trunk/drivers/net/wireless/ath/ath5k/base.c
Original file line number Diff line number Diff line change
Expand Up @@ -2000,9 +2000,12 @@ ath5k_tx_processq(struct ath5k_softc *sc, struct ath5k_txq *txq)
static void
ath5k_tasklet_tx(unsigned long data)
{
int i;
struct ath5k_softc *sc = (void *)data;

ath5k_tx_processq(sc, sc->txq);
for (i=0; i < AR5K_NUM_TX_QUEUES; i++)
if (sc->txqs[i].setup && (sc->ah->ah_txq_isr & BIT(i)))
ath5k_tx_processq(sc, &sc->txqs[i]);
}


Expand Down

0 comments on commit a80d9ac

Please sign in to comment.