[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1383724452-15428-1-git-send-email-duanj.fnst@cn.fujitsu.com>
Date: Wed, 6 Nov 2013 15:54:12 +0800
From: Duan Jiong <duanj.fnst@...fujitsu.com>
To: kernel@...gutronix.de, linux@....linux.org.uk,
a.zummo@...ertech.it, airlied@...ux.ie
Cc: linux-kernel@...r.kernel.org, rtc-linux@...glegroups.com,
dri-devel@...ts.freedesktop.org, linux-tegra@...r.kernel.org,
Duan Jiong <duanj.fnst@...fujitsu.com>
Subject: [PATCH] ethernet: replace IS_ERR and PTR_ERR with PTR_ERR_OR_ZERO
This patch fixes coccinelle error regarding usage of IS_ERR and
PTR_ERR instead of PTR_ERR_OR_ZERO.
Signed-off-by: Duan Jiong <duanj.fnst@...fujitsu.com>
---
drivers/net/ethernet/8390/apne.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/drivers/net/ethernet/8390/apne.c b/drivers/net/ethernet/8390/apne.c
index 912ed7a..e41e3af 100644
--- a/drivers/net/ethernet/8390/apne.c
+++ b/drivers/net/ethernet/8390/apne.c
@@ -551,9 +551,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)
--
1.8.3.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists