net/apne: replace IS_ERR and PTR_ERR with PTR_ERR_OR_ZERO
authorDuan Jiong <[email protected]>
Fri, 11 Apr 2014 08:37:37 +0000 (16:37 +0800)
committerDavid S. Miller <[email protected]>
Sat, 12 Apr 2014 05:59:38 +0000 (01:59 -0400)
This patch fixes coccinelle error regarding usage of IS_ERR and
PTR_ERR instead of PTR_ERR_OR_ZERO.

Signed-off-by: Duan Jiong <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
drivers/net/ethernet/8390/apne.c

index 30104b60da85a2df50259d0216991d0004e06069..c56ac9ebc08f91472033b135c48d04351266b6fe 100644 (file)
@@ -560,9 +560,7 @@ static struct net_device *apne_dev;
 static int __init apne_module_init(void)
 {
        apne_dev = apne_probe(-1);
-       if (IS_ERR(apne_dev))
-               return PTR_ERR(apne_dev);
-       return 0;
+       return PTR_ERR_OR_ZERO(apne_dev);
 }
 
 static void __exit apne_module_exit(void)