* [PATCH] smsc: replace IS_ERR and PTR_ERR with PTR_ERR_OR_ZERO
@ 2013-11-06 7:57 Duan Jiong
2013-11-07 8:02 ` David Miller
0 siblings, 1 reply; 2+ messages in thread
From: Duan Jiong @ 2013-11-06 7:57 UTC (permalink / raw)
To: kernel, linux, a.zummo, airlied, dmitry.torokhov, axboe
Cc: linux-kernel, rtc-linux, dri-devel, linux-tegra, linux-input,
devel, netdev, Duan Jiong
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@cn.fujitsu.com>
---
drivers/net/ethernet/smsc/smc9194.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/drivers/net/ethernet/smsc/smc9194.c b/drivers/net/ethernet/smsc/smc9194.c
index 6f3491f..67d9fde 100644
--- a/drivers/net/ethernet/smsc/smc9194.c
+++ b/drivers/net/ethernet/smsc/smc9194.c
@@ -1545,9 +1545,7 @@ int __init init_module(void)
/* copy the parameters from insmod into the device structure */
devSMC9194 = smc_init(-1);
- if (IS_ERR(devSMC9194))
- return PTR_ERR(devSMC9194);
- return 0;
+ return PTR_ERR_OR_ZERO(devSMC9194);
}
void __exit cleanup_module(void)
--
1.8.3.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] smsc: replace IS_ERR and PTR_ERR with PTR_ERR_OR_ZERO
2013-11-06 7:57 [PATCH] smsc: replace IS_ERR and PTR_ERR with PTR_ERR_OR_ZERO Duan Jiong
@ 2013-11-07 8:02 ` David Miller
0 siblings, 0 replies; 2+ messages in thread
From: David Miller @ 2013-11-07 8:02 UTC (permalink / raw)
To: duanj.fnst
Cc: kernel, linux, a.zummo, airlied, dmitry.torokhov, axboe,
linux-kernel, rtc-linux, dri-devel, linux-tegra, linux-input,
devel, netdev
From: Duan Jiong <duanj.fnst@cn.fujitsu.com>
Date: Wed, 6 Nov 2013 15:57:17 +0800
> 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@cn.fujitsu.com>
Applied.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-11-07 8:02 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-06 7:57 [PATCH] smsc: replace IS_ERR and PTR_ERR with PTR_ERR_OR_ZERO Duan Jiong
2013-11-07 8:02 ` David Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).