aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
Diffstat (limited to 'drivers')
-rw-r--r--drivers/net/tulip/uli526x.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/tulip/uli526x.c b/drivers/net/tulip/uli526x.c
index 90be57bad39d..a4f09d490531 100644
--- a/drivers/net/tulip/uli526x.c
+++ b/drivers/net/tulip/uli526x.c
@@ -858,7 +858,7 @@ static void uli526x_rx_packet(struct net_device *dev, struct uli526x_board_info
858 /* Good packet, send to upper layer */ 858 /* Good packet, send to upper layer */
859 /* Shorst packet used new SKB */ 859 /* Shorst packet used new SKB */
860 if ((rxlen < RX_COPY_SIZE) && 860 if ((rxlen < RX_COPY_SIZE) &&
861 ((new_skb = dev_alloc_skb(rxlen + 2) != NULL))) { 861 (((new_skb = dev_alloc_skb(rxlen + 2)) != NULL))) {
862 skb = new_skb; 862 skb = new_skb;
863 /* size less than COPY_SIZE, allocate a rxlen SKB */ 863 /* size less than COPY_SIZE, allocate a rxlen SKB */
864 skb_reserve(skb, 2); /* 16byte align */ 864 skb_reserve(skb, 2); /* 16byte align */