提交 9c09bd8d 编写于 作者: F Fengguang Wu 提交者: Guenter Roeck

hwmon: (nct6775) fix coccinelle warnings

drivers/hwmon/nct6775.c:3866:1-3: WARNING: PTR_RET can be used

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

Generated by: coccinelle/api/ptr_ret.cocci

CC: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: NFengguang Wu <fengguang.wu@intel.com>
Signed-off-by: NGuenter Roeck <linux@roeck-us.net>
上级 62f9a57c
...@@ -3862,10 +3862,7 @@ static int nct6775_probe(struct platform_device *pdev) ...@@ -3862,10 +3862,7 @@ static int nct6775_probe(struct platform_device *pdev)
hwmon_dev = devm_hwmon_device_register_with_groups(dev, data->name, hwmon_dev = devm_hwmon_device_register_with_groups(dev, data->name,
data, data->groups); data, data->groups);
if (IS_ERR(hwmon_dev)) return PTR_ERR_OR_ZERO(hwmon_dev);
return PTR_ERR(hwmon_dev);
return 0;
} }
#ifdef CONFIG_PM #ifdef CONFIG_PM
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册