arcnet: Remove pointer comparisons to NULL
Use direct tests of pointer instead. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Michael Grzeschik <m.grzeschik@pengutronix.de>
This commit is contained in:
committed by
Michael Grzeschik
parent
97464eddf9
commit
d8101e7bec
@@ -133,7 +133,7 @@ static void rx(struct net_device *dev, int bufnum,
|
||||
ofs = 256 - length;
|
||||
|
||||
skb = alloc_skb(length + ARC_HDR_SIZE, GFP_ATOMIC);
|
||||
if (skb == NULL) {
|
||||
if (!skb) {
|
||||
dev->stats.rx_dropped++;
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user