Skip to content

Commit

Permalink
backlight: pm8941-wled: Fix ptr_ret.cocci warnings
Browse files Browse the repository at this point in the history
drivers/video/backlight/pm8941-wled.c:404: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

Acked-by: Bjorn Andersson <bjorn.andersson@sonymobile.com>
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
  • Loading branch information
kbuild test robot authored and Lee Jones committed Oct 27, 2015
1 parent dc88112 commit fc18111
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions drivers/video/backlight/pm8941-wled.c
Original file line number Diff line number Diff line change
Expand Up @@ -401,10 +401,7 @@ static int pm8941_wled_probe(struct platform_device *pdev)
bl = devm_backlight_device_register(&pdev->dev, wled->name,
&pdev->dev, wled,
&pm8941_wled_ops, &props);
if (IS_ERR(bl))
return PTR_ERR(bl);

return 0;
return PTR_ERR_OR_ZERO(bl);
};

static const struct of_device_id pm8941_wled_match_table[] = {
Expand Down

0 comments on commit fc18111

Please sign in to comment.