hwmon: (max16065) Use PTR_ERR_OR_ZERO
Signed-off-by: Axel Lin <axel.lin@ingics.com> Signed-off-by: Guenter Roeck <linux@roeck-us.net>
This commit is contained in:
parent
b8d5689830
commit
a7b30ea500
1 changed files with 1 additions and 4 deletions
|
@ -642,10 +642,7 @@ static int max16065_probe(struct i2c_client *client,
|
|||
|
||||
hwmon_dev = devm_hwmon_device_register_with_groups(dev, client->name,
|
||||
data, data->groups);
|
||||
if (unlikely(IS_ERR(hwmon_dev)))
|
||||
return PTR_ERR(hwmon_dev);
|
||||
|
||||
return 0;
|
||||
return PTR_ERR_OR_ZERO(hwmon_dev);
|
||||
}
|
||||
|
||||
static const struct i2c_device_id max16065_id[] = {
|
||||
|
|
Loading…
Reference in a new issue