aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/hwmon/max6697.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/hwmon/max6697.c b/drivers/hwmon/max6697.c
index 0af910a479ab..7fd3eaf817f4 100644
--- a/drivers/hwmon/max6697.c
+++ b/drivers/hwmon/max6697.c
@@ -646,10 +646,7 @@ static int max6697_probe(struct i2c_client *client,
646 hwmon_dev = devm_hwmon_device_register_with_groups(dev, client->name, 646 hwmon_dev = devm_hwmon_device_register_with_groups(dev, client->name,
647 data, 647 data,
648 max6697_groups); 648 max6697_groups);
649 if (IS_ERR(hwmon_dev)) 649 return PTR_ERR_OR_ZERO(hwmon_dev);
650 return PTR_ERR(hwmon_dev);
651
652 return 0;
653} 650}
654 651
655static const struct i2c_device_id max6697_id[] = { 652static const struct i2c_device_id max6697_id[] = {