提交 c1fcbaa5 编写于 作者: D Duan Jiong 提交者: David S. Miller

smsc: 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: NDuan Jiong <duanj.fnst@cn.fujitsu.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 f9bddcdf
......@@ -1569,9 +1569,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)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册