Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 246885
b: refs/heads/master
c: dfa8fc6
h: refs/heads/master
i:
  246883: 32e5a4e
v: v3
  • Loading branch information
John W. Linville committed Apr 14, 2011
1 parent 6044351 commit efafee9
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: a3e6b12c0232748658a602eda39f12fddb254ba8
refs/heads/master: dfa8fc69d92f8418e1296d762f3b1624df59f0ac
5 changes: 4 additions & 1 deletion trunk/drivers/net/wireless/ath/ath9k/hif_usb.c
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,10 @@ static inline void ath9k_skb_queue_complete(struct hif_device_usb *hif_dev,
while ((skb = __skb_dequeue(queue)) != NULL) {
ath9k_htc_txcompletion_cb(hif_dev->htc_handle,
skb, txok);
(txok) ? TX_STAT_INC(skb_success) : TX_STAT_INC(skb_failed);
if (txok)
TX_STAT_INC(skb_success);
else
TX_STAT_INC(skb_failed);
}
}

Expand Down

0 comments on commit efafee9

Please sign in to comment.