Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 194271
b: refs/heads/master
c: f28a7b3
h: refs/heads/master
i:
  194269: fec9034
  194267: f403e1b
  194263: 59e0b74
  194255: b1dc1a7
  194239: e2f484a
v: v3
  • Loading branch information
Ming Lei authored and John W. Linville committed Apr 14, 2010
1 parent e595f19 commit 4fe50bb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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: 87d77c4ef132599eb3a6c49520719d39f7341efd
refs/heads/master: f28a7b30cdaa936bdbdc0a2018241936fb56cae6
6 changes: 3 additions & 3 deletions trunk/drivers/net/wireless/ath/ath9k/hif_usb.c
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ static void ath9k_hif_usb_rx_cb(struct urb *urb)

return;
free:
dev_kfree_skb_any(skb);
kfree_skb(skb);
}

static void ath9k_hif_usb_reg_in_cb(struct urb *urb)
Expand Down Expand Up @@ -625,7 +625,7 @@ static int ath9k_hif_usb_alloc_rx_urbs(struct hif_device_usb *hif_dev)
}

/* Allocate buffer */
skb = __dev_alloc_skb(MAX_RX_BUF_SIZE, GFP_KERNEL);
skb = alloc_skb(MAX_RX_BUF_SIZE, GFP_KERNEL);
if (!skb) {
ret = -ENOMEM;
goto err_skb;
Expand Down Expand Up @@ -657,7 +657,7 @@ static int ath9k_hif_usb_alloc_rx_urbs(struct hif_device_usb *hif_dev)
return 0;

err_submit:
dev_kfree_skb_any(skb);
kfree_skb(skb);
err_skb:
usb_free_urb(urb);
err_urb:
Expand Down

0 comments on commit 4fe50bb

Please sign in to comment.