|
@@ -378,10 +378,7 @@ static int ds1621_probe(struct i2c_client *client,
|
|
|
hwmon_dev = devm_hwmon_device_register_with_groups(&client->dev,
|
|
hwmon_dev = devm_hwmon_device_register_with_groups(&client->dev,
|
|
|
client->name, data,
|
|
client->name, data,
|
|
|
ds1621_groups);
|
|
ds1621_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 ds1621_id[] = {
|
|
static const struct i2c_device_id ds1621_id[] = {
|