提交 94c42cf9 编写于 作者: G Guenter Roeck

hwmon: (ltc4245) Use device managed function to register hwmon device

This simplifies the code and reduces code size.
Signed-off-by: NGuenter Roeck <linux@roeck-us.net>
Reviewed-by: NJean Delvare <jdelvare@suse.de>
上级 5230551a
...@@ -512,24 +512,10 @@ static int ltc4245_probe(struct i2c_client *client, ...@@ -512,24 +512,10 @@ static int ltc4245_probe(struct i2c_client *client,
/* Add sysfs hooks */ /* Add sysfs hooks */
ltc4245_sysfs_add_groups(data); ltc4245_sysfs_add_groups(data);
hwmon_dev = hwmon_device_register_with_groups(&client->dev, hwmon_dev = devm_hwmon_device_register_with_groups(&client->dev,
client->name, data, client->name, data,
data->groups); data->groups);
if (IS_ERR(hwmon_dev)) return PTR_ERR_OR_ZERO(hwmon_dev);
return PTR_ERR(hwmon_dev);
i2c_set_clientdata(client, hwmon_dev);
return 0;
}
static int ltc4245_remove(struct i2c_client *client)
{
struct device *hwmon_dev = i2c_get_clientdata(client);
hwmon_device_unregister(hwmon_dev);
return 0;
} }
static const struct i2c_device_id ltc4245_id[] = { static const struct i2c_device_id ltc4245_id[] = {
...@@ -544,7 +530,6 @@ static struct i2c_driver ltc4245_driver = { ...@@ -544,7 +530,6 @@ static struct i2c_driver ltc4245_driver = {
.name = "ltc4245", .name = "ltc4245",
}, },
.probe = ltc4245_probe, .probe = ltc4245_probe,
.remove = ltc4245_remove,
.id_table = ltc4245_id, .id_table = ltc4245_id,
}; };
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册