diff options
author | Thomas Meyer <thomas@m3y3r.de> | 2012-08-06 09:51:16 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-08-06 22:30:02 +0200 |
commit | b5497eeb37d7d4a5a61b91f64efedc90d1ad6fa3 (patch) | |
tree | 457b46aa0cbf3394d64bda4ad59b5467ad890b0e /drivers/net/appletalk/ltpc.c | |
parent | net_sched: act: Delete estimator in error path. (diff) | |
download | linux-b5497eeb37d7d4a5a61b91f64efedc90d1ad6fa3.tar.xz linux-b5497eeb37d7d4a5a61b91f64efedc90d1ad6fa3.zip |
net: Use PTR_RET rather than if(IS_ERR(.. [1]
The semantic patch that makes this change is available
in scripts/coccinelle/api/ptr_ret.cocci.
More information about semantic patching is available at
http://coccinelle.lip6.fr/
Signed-off-by: Thomas Meyer <thomas@m3y3r.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/appletalk/ltpc.c')
-rw-r--r-- | drivers/net/appletalk/ltpc.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/net/appletalk/ltpc.c b/drivers/net/appletalk/ltpc.c index 0910dce3996d..b5782cdf0bca 100644 --- a/drivers/net/appletalk/ltpc.c +++ b/drivers/net/appletalk/ltpc.c @@ -1243,9 +1243,7 @@ static int __init ltpc_module_init(void) "ltpc: Autoprobing is not recommended for modules\n"); dev_ltpc = ltpc_probe(); - if (IS_ERR(dev_ltpc)) - return PTR_ERR(dev_ltpc); - return 0; + return PTR_RET(dev_ltpc); } module_init(ltpc_module_init); #endif |