aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/b43/pio.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/wireless/b43/pio.c')
-rw-r--r--drivers/net/wireless/b43/pio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/b43/pio.c b/drivers/net/wireless/b43/pio.c
index 3533ab86bd36..a73ff8c9deb5 100644
--- a/drivers/net/wireless/b43/pio.c
+++ b/drivers/net/wireless/b43/pio.c
@@ -196,7 +196,7 @@ static void b43_pio_cancel_tx_packets(struct b43_pio_txqueue *q)
196 for (i = 0; i < ARRAY_SIZE(q->packets); i++) { 196 for (i = 0; i < ARRAY_SIZE(q->packets); i++) {
197 pack = &(q->packets[i]); 197 pack = &(q->packets[i]);
198 if (pack->skb) { 198 if (pack->skb) {
199 dev_kfree_skb_any(pack->skb); 199 ieee80211_free_txskb(q->dev->wl->hw, pack->skb);
200 pack->skb = NULL; 200 pack->skb = NULL;
201 } 201 }
202 } 202 }
@@ -552,7 +552,7 @@ int b43_pio_tx(struct b43_wldev *dev, struct sk_buff *skb)
552 if (unlikely(err == -ENOKEY)) { 552 if (unlikely(err == -ENOKEY)) {
553 /* Drop this packet, as we don't have the encryption key 553 /* Drop this packet, as we don't have the encryption key
554 * anymore and must not transmit it unencrypted. */ 554 * anymore and must not transmit it unencrypted. */
555 dev_kfree_skb_any(skb); 555 ieee80211_free_txskb(dev->wl->hw, skb);
556 err = 0; 556 err = 0;
557 goto out; 557 goto out;
558 } 558 }