Skip to content

Commit

Permalink
hwmon: (lm95245) Convert to use devm_ functions
Browse files Browse the repository at this point in the history
Convert to use devm_ functions to reduce code size and simplify the code.

Cc: Alexander Stein <alexander.stein@systec-electronic.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
  • Loading branch information
Guenter Roeck committed Sep 24, 2012
1 parent 1487bf7 commit a8dd946
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions drivers/hwmon/lm95245.c
Original file line number Diff line number Diff line change
Expand Up @@ -462,11 +462,10 @@ static int lm95245_probe(struct i2c_client *new_client,
struct lm95245_data *data;
int err;

data = kzalloc(sizeof(struct lm95245_data), GFP_KERNEL);
if (!data) {
err = -ENOMEM;
goto exit;
}
data = devm_kzalloc(&new_client->dev, sizeof(struct lm95245_data),
GFP_KERNEL);
if (!data)
return -ENOMEM;

i2c_set_clientdata(new_client, data);
mutex_init(&data->update_lock);
Expand All @@ -477,7 +476,7 @@ static int lm95245_probe(struct i2c_client *new_client,
/* Register sysfs hooks */
err = sysfs_create_group(&new_client->dev.kobj, &lm95245_group);
if (err)
goto exit_free;
return err;

data->hwmon_dev = hwmon_device_register(&new_client->dev);
if (IS_ERR(data->hwmon_dev)) {
Expand All @@ -489,9 +488,6 @@ static int lm95245_probe(struct i2c_client *new_client,

exit_remove_files:
sysfs_remove_group(&new_client->dev.kobj, &lm95245_group);
exit_free:
kfree(data);
exit:
return err;
}

Expand All @@ -502,7 +498,6 @@ static int lm95245_remove(struct i2c_client *client)
hwmon_device_unregister(data->hwmon_dev);
sysfs_remove_group(&client->dev.kobj, &lm95245_group);

kfree(data);
return 0;
}

Expand Down

0 comments on commit a8dd946

Please sign in to comment.