提交 fc18111b 编写于 作者: K kbuild test robot 提交者: Lee Jones

backlight: pm8941-wled: Fix ptr_ret.cocci warnings

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: NBjorn Andersson <bjorn.andersson@sonymobile.com>
Signed-off-by: NFengguang Wu <fengguang.wu@intel.com>
Signed-off-by: NLee Jones <lee.jones@linaro.org>
上级 dc881123
...@@ -401,10 +401,7 @@ static int pm8941_wled_probe(struct platform_device *pdev) ...@@ -401,10 +401,7 @@ static int pm8941_wled_probe(struct platform_device *pdev)
bl = devm_backlight_device_register(&pdev->dev, wled->name, bl = devm_backlight_device_register(&pdev->dev, wled->name,
&pdev->dev, wled, &pdev->dev, wled,
&pm8941_wled_ops, &props); &pm8941_wled_ops, &props);
if (IS_ERR(bl)) return PTR_ERR_OR_ZERO(bl);
return PTR_ERR(bl);
return 0;
}; };
static const struct of_device_id pm8941_wled_match_table[] = { static const struct of_device_id pm8941_wled_match_table[] = {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册