mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-07 15:18:15 +00:00
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: Duan Jiong <duanj.fnst@cn.fujitsu.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
f9bddcdf1f
commit
c1fcbaa57a
1 changed files with 1 additions and 3 deletions
|
@ -1569,9 +1569,7 @@ int __init init_module(void)
|
||||||
|
|
||||||
/* copy the parameters from insmod into the device structure */
|
/* copy the parameters from insmod into the device structure */
|
||||||
devSMC9194 = smc_init(-1);
|
devSMC9194 = smc_init(-1);
|
||||||
if (IS_ERR(devSMC9194))
|
return PTR_ERR_OR_ZERO(devSMC9194);
|
||||||
return PTR_ERR(devSMC9194);
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void __exit cleanup_module(void)
|
void __exit cleanup_module(void)
|
||||||
|
|
Loading…
Add table
Reference in a new issue