Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2a253c47 authored by Fengguang Wu's avatar Fengguang Wu Committed by Guenter Roeck
Browse files

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: default avatarFengguang Wu <fengguang.wu@intel.com>
Signed-off-by: default avatarGuenter Roeck <linux@roeck-us.net>
parent 3ea85ba7
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -240,10 +240,7 @@ static int ltc4261_probe(struct i2c_client *client,
	hwmon_dev = devm_hwmon_device_register_with_groups(dev, client->name,
							   data,
							   ltc4261_groups);
	if (IS_ERR(hwmon_dev))
		return PTR_ERR(hwmon_dev);

	return 0;
	return PTR_ERR_OR_ZERO(hwmon_dev);
}

static const struct i2c_device_id ltc4261_id[] = {