Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 369679
b: refs/heads/master
c: 07236bf
h: refs/heads/master
i:
  369677: c4145bb
  369675: 9e3711d
  369671: 64da377
  369663: d89d107
v: v3
  • Loading branch information
Sujith Manoharan authored and John W. Linville committed Apr 23, 2013
1 parent b0da7c0 commit 60e3430
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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: e87f3d538e5c3a561ddd97eab02706ff3973e7da
refs/heads/master: 07236bf3c659d1823262c1dabec4fa05990df115
4 changes: 2 additions & 2 deletions trunk/drivers/net/wireless/ath/ath9k/recv.c
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ static bool ath_rx_edma_buf_link(struct ath_softc *sc,

SKB_CB_ATHBUF(skb) = bf;
ath9k_hw_addrxbuf_edma(ah, bf->bf_buf_addr, qtype);
skb_queue_tail(&rx_edma->rx_fifo, skb);
__skb_queue_tail(&rx_edma->rx_fifo, skb);

return true;
}
Expand Down Expand Up @@ -155,7 +155,7 @@ static void ath_rx_remove_buffer(struct ath_softc *sc,

rx_edma = &sc->rx.rx_edma[qtype];

while ((skb = skb_dequeue(&rx_edma->rx_fifo)) != NULL) {
while ((skb = __skb_dequeue(&rx_edma->rx_fifo)) != NULL) {
bf = SKB_CB_ATHBUF(skb);
BUG_ON(!bf);
list_add_tail(&bf->list, &sc->rx.rxbuf);
Expand Down

0 comments on commit 60e3430

Please sign in to comment.