Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 122801
b: refs/heads/master
c: da9f57e
h: refs/heads/master
i:
  122799: 1f7bb58
v: v3
  • Loading branch information
Larry Finger authored and John W. Linville committed Dec 19, 2008
1 parent 011b020 commit 2a0a45a
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: 23827926eb5ce5cb944ebbd96d22297a2582d45d
refs/heads/master: da9f57eade0a743450a201645db7fc5ac0809900
4 changes: 2 additions & 2 deletions trunk/drivers/net/wireless/rtl818x/rtl8187_dev.c
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ static int rtl8187_tx(struct ieee80211_hw *dev, struct sk_buff *skb)
urb = usb_alloc_urb(0, GFP_ATOMIC);
if (!urb) {
kfree_skb(skb);
return 0;
return -ENOMEM;
}

flags = skb->len;
Expand Down Expand Up @@ -281,7 +281,7 @@ static int rtl8187_tx(struct ieee80211_hw *dev, struct sk_buff *skb)
}
usb_free_urb(urb);

return 0;
return rc;
}

static void rtl8187_rx_cb(struct urb *urb)
Expand Down

0 comments on commit 2a0a45a

Please sign in to comment.