mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-03-17 20:54:10 +00:00
hwmon: (ltc4261) fix coccinelle warnings
drivers/hwmon/ltc4261.c:243: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: Fengguang Wu <fengguang.wu@intel.com> Signed-off-by: Guenter Roeck <linux@roeck-us.net>
This commit is contained in:
parent
3ea85ba7af
commit
2a253c4789
1 changed files with 1 additions and 4 deletions
|
@ -240,10 +240,7 @@ static int ltc4261_probe(struct i2c_client *client,
|
||||||
hwmon_dev = devm_hwmon_device_register_with_groups(dev, client->name,
|
hwmon_dev = devm_hwmon_device_register_with_groups(dev, client->name,
|
||||||
data,
|
data,
|
||||||
ltc4261_groups);
|
ltc4261_groups);
|
||||||
if (IS_ERR(hwmon_dev))
|
return PTR_ERR_OR_ZERO(hwmon_dev);
|
||||||
return PTR_ERR(hwmon_dev);
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static const struct i2c_device_id ltc4261_id[] = {
|
static const struct i2c_device_id ltc4261_id[] = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue