Skip to content

Commit

Permalink
smsc: replace IS_ERR and PTR_ERR with PTR_ERR_OR_ZERO
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Duan Jiong authored and David S. Miller committed Nov 7, 2013
1 parent f9bddcd commit c1fcbaa
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions drivers/net/ethernet/smsc/smc9194.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit c1fcbaa

Please sign in to comment.