Commit 846583ce authored by Vasyl Gomonovych's avatar Vasyl Gomonovych Committed by Rafael J. Wysocki

PNP: pnpbios: Use PTR_ERR_OR_ZERO()

Fix ptr_ret.cocci warnings:
drivers/pnp/pnpbios/core.c:584:1-3: WARNING: PTR_ERR_OR_ZERO can be used

Use PTR_ERR_OR_ZERO rather than if(IS_ERR(...)) + PTR_ERR

Generated by: scripts/coccinelle/api/ptr_ret.cocci
Signed-off-by: default avatarVasyl Gomonovych <gomonovych@gmail.com>
Reviewed-by: default avatarJean Delvare <jdelvare@suse.de>
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
parent 245fe15e
...@@ -581,10 +581,7 @@ static int __init pnpbios_thread_init(void) ...@@ -581,10 +581,7 @@ static int __init pnpbios_thread_init(void)
init_completion(&unload_sem); init_completion(&unload_sem);
task = kthread_run(pnp_dock_thread, NULL, "kpnpbiosd"); task = kthread_run(pnp_dock_thread, NULL, "kpnpbiosd");
if (IS_ERR(task)) return PTR_ERR_OR_ZERO(task);
return PTR_ERR(task);
return 0;
} }
/* Start the kernel thread later: */ /* Start the kernel thread later: */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment