[brcm47xx] finally fix boot failures on buffalo devices, tested on WHR-HP-G54 and...
[openwrt.git] / target / linux / brcm47xx / patches-2.6.28 / 813-use_netdev_alloc_skb.patch
1 --- a/drivers/net/b44.c
2 +++ b/drivers/net/b44.c
3 @@ -814,7 +814,7 @@ static int b44_rx(struct b44 *bp, int bu
4 struct sk_buff *copy_skb;
5
6 b44_recycle_rx(bp, cons, bp->rx_prod);
7 - copy_skb = dev_alloc_skb(len + 2);
8 + copy_skb = netdev_alloc_skb(bp->dev, len + 2);
9 if (copy_skb == NULL)
10 goto drop_it_no_recycle;
11
This page took 0.060814 seconds and 5 git commands to generate.