Skip to content

Commit

Permalink
PNP: pnpbios: Use PTR_ERR_OR_ZERO()
Browse files Browse the repository at this point in the history
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: Vasyl Gomonovych <[email protected]>
Reviewed-by: Jean Delvare <[email protected]>
Signed-off-by: Rafael J. Wysocki <[email protected]>
  • Loading branch information
Carmichael561 authored and rafaeljw committed Dec 16, 2017
1 parent 245fe15 commit 846583c
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions drivers/pnp/pnpbios/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -581,10 +581,7 @@ static int __init pnpbios_thread_init(void)

init_completion(&unload_sem);
task = kthread_run(pnp_dock_thread, NULL, "kpnpbiosd");
if (IS_ERR(task))
return PTR_ERR(task);

return 0;
return PTR_ERR_OR_ZERO(task);
}

/* Start the kernel thread later: */
Expand Down

0 comments on commit 846583c

Please sign in to comment.