tulip: Add missing parens.

As reported by Stephen Rothwell.

drivers/net/tulip/uli526x.c: In function 'uli526x_rx_packet':
drivers/net/tulip/uli526x.c:861: warning: assignment makes pointer from integer without a cast

Signed-off-by: David S. Miller <davem@davemloft.net>

+1 -1
+1 -1
drivers/net/tulip/uli526x.c
··· 858 858 /* Good packet, send to upper layer */ 859 859 /* Shorst packet used new SKB */ 860 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 862 skb = new_skb; 863 863 /* size less than COPY_SIZE, allocate a rxlen SKB */ 864 864 skb_reserve(skb, 2); /* 16byte align */