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>
This commit is contained in:

committed by
David S. Miller

parent
47fd92f5a7
commit
b5497eeb37
@@ -996,9 +996,7 @@ static int __init cops_module_init(void)
|
||||
printk(KERN_WARNING "%s: You shouldn't autoprobe with insmod\n",
|
||||
cardname);
|
||||
cops_dev = cops_probe(-1);
|
||||
if (IS_ERR(cops_dev))
|
||||
return PTR_ERR(cops_dev);
|
||||
return 0;
|
||||
return PTR_RET(cops_dev);
|
||||
}
|
||||
|
||||
static void __exit cops_module_exit(void)
|
||||
|
Reference in New Issue
Block a user