diff options
Diffstat (limited to 'drivers/hwmon/lm77.c')
-rw-r--r-- | drivers/hwmon/lm77.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/hwmon/lm77.c b/drivers/hwmon/lm77.c index 46e3abad7206..cee5c2e8cfad 100644 --- a/drivers/hwmon/lm77.c +++ b/drivers/hwmon/lm77.c | |||
@@ -51,7 +51,7 @@ I2C_CLIENT_INSMOD_1(lm77); | |||
51 | /* Each client has this additional data */ | 51 | /* Each client has this additional data */ |
52 | struct lm77_data { | 52 | struct lm77_data { |
53 | struct i2c_client client; | 53 | struct i2c_client client; |
54 | struct class_device *class_dev; | 54 | struct device *hwmon_dev; |
55 | struct mutex update_lock; | 55 | struct mutex update_lock; |
56 | char valid; | 56 | char valid; |
57 | unsigned long last_updated; /* In jiffies */ | 57 | unsigned long last_updated; /* In jiffies */ |
@@ -337,9 +337,9 @@ static int lm77_detect(struct i2c_adapter *adapter, int address, int kind) | |||
337 | if ((err = sysfs_create_group(&new_client->dev.kobj, &lm77_group))) | 337 | if ((err = sysfs_create_group(&new_client->dev.kobj, &lm77_group))) |
338 | goto exit_detach; | 338 | goto exit_detach; |
339 | 339 | ||
340 | data->class_dev = hwmon_device_register(&new_client->dev); | 340 | data->hwmon_dev = hwmon_device_register(&new_client->dev); |
341 | if (IS_ERR(data->class_dev)) { | 341 | if (IS_ERR(data->hwmon_dev)) { |
342 | err = PTR_ERR(data->class_dev); | 342 | err = PTR_ERR(data->hwmon_dev); |
343 | goto exit_remove; | 343 | goto exit_remove; |
344 | } | 344 | } |
345 | 345 | ||
@@ -358,7 +358,7 @@ exit: | |||
358 | static int lm77_detach_client(struct i2c_client *client) | 358 | static int lm77_detach_client(struct i2c_client *client) |
359 | { | 359 | { |
360 | struct lm77_data *data = i2c_get_clientdata(client); | 360 | struct lm77_data *data = i2c_get_clientdata(client); |
361 | hwmon_device_unregister(data->class_dev); | 361 | hwmon_device_unregister(data->hwmon_dev); |
362 | sysfs_remove_group(&client->dev.kobj, &lm77_group); | 362 | sysfs_remove_group(&client->dev.kobj, &lm77_group); |
363 | i2c_detach_client(client); | 363 | i2c_detach_client(client); |
364 | kfree(data); | 364 | kfree(data); |