Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 326162
b: refs/heads/master
c: 9cc7dcc
h: refs/heads/master
v: v3
  • Loading branch information
Guenter Roeck committed Sep 24, 2012
1 parent 79a6eb7 commit 0b3a36d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 11 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 0880830096ee314c953d4bd5d017e27589f0e830
refs/heads/master: 9cc7dcc5238308250eb3ca4314f6423bd6f54ef0
15 changes: 5 additions & 10 deletions trunk/drivers/hwmon/adt7470.c
Original file line number Diff line number Diff line change
Expand Up @@ -1256,11 +1256,10 @@ static int adt7470_probe(struct i2c_client *client,
struct adt7470_data *data;
int err;

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

data->num_temp_sensors = -1;
data->auto_update_interval = AUTO_UPDATE_INTERVAL;
Expand All @@ -1277,7 +1276,7 @@ static int adt7470_probe(struct i2c_client *client,
data->attrs.attrs = adt7470_attr;
err = sysfs_create_group(&client->dev.kobj, &data->attrs);
if (err)
goto exit_free;
return err;

data->hwmon_dev = hwmon_device_register(&client->dev);
if (IS_ERR(data->hwmon_dev)) {
Expand All @@ -1299,9 +1298,6 @@ static int adt7470_probe(struct i2c_client *client,
hwmon_device_unregister(data->hwmon_dev);
exit_remove:
sysfs_remove_group(&client->dev.kobj, &data->attrs);
exit_free:
kfree(data);
exit:
return err;
}

Expand All @@ -1313,7 +1309,6 @@ static int adt7470_remove(struct i2c_client *client)
wait_for_completion(&data->auto_update_stop);
hwmon_device_unregister(data->hwmon_dev);
sysfs_remove_group(&client->dev.kobj, &data->attrs);
kfree(data);
return 0;
}

Expand Down

0 comments on commit 0b3a36d

Please sign in to comment.