diff options
author | Mark M. Hoffman <mhoffman@lightlink.com> | 2005-07-15 21:39:18 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2005-09-05 12:14:08 -0400 |
commit | 943b0830cebe4711354945ed3cb44e84152aaca0 (patch) | |
tree | 1963da8d8867069617404a8f92739035c6faca02 /drivers/hwmon/adm1026.c | |
parent | 1236441f38b6a98caf4c7983e7efdecc2d1527b5 (diff) |
[PATCH] I2C hwmon: add hwmon sysfs class to drivers
This patch modifies sensors chip drivers to make use of the new
sysfs class "hwmon".
Signed-off-by: Mark M. Hoffman <mhoffman@lightlink.com>
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/hwmon/adm1026.c')
-rw-r--r-- | drivers/hwmon/adm1026.c | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/drivers/hwmon/adm1026.c b/drivers/hwmon/adm1026.c index c8a7f47911f9..eb55133a13ee 100644 --- a/drivers/hwmon/adm1026.c +++ b/drivers/hwmon/adm1026.c | |||
@@ -31,6 +31,8 @@ | |||
31 | #include <linux/i2c-sensor.h> | 31 | #include <linux/i2c-sensor.h> |
32 | #include <linux/i2c-vid.h> | 32 | #include <linux/i2c-vid.h> |
33 | #include <linux/hwmon-sysfs.h> | 33 | #include <linux/hwmon-sysfs.h> |
34 | #include <linux/hwmon.h> | ||
35 | #include <linux/err.h> | ||
34 | 36 | ||
35 | /* Addresses to scan */ | 37 | /* Addresses to scan */ |
36 | static unsigned short normal_i2c[] = { 0x2c, 0x2d, 0x2e, I2C_CLIENT_END }; | 38 | static unsigned short normal_i2c[] = { 0x2c, 0x2d, 0x2e, I2C_CLIENT_END }; |
@@ -259,6 +261,7 @@ struct pwm_data { | |||
259 | 261 | ||
260 | struct adm1026_data { | 262 | struct adm1026_data { |
261 | struct i2c_client client; | 263 | struct i2c_client client; |
264 | struct class_device *class_dev; | ||
262 | struct semaphore lock; | 265 | struct semaphore lock; |
263 | enum chips type; | 266 | enum chips type; |
264 | 267 | ||
@@ -324,8 +327,10 @@ int adm1026_attach_adapter(struct i2c_adapter *adapter) | |||
324 | 327 | ||
325 | int adm1026_detach_client(struct i2c_client *client) | 328 | int adm1026_detach_client(struct i2c_client *client) |
326 | { | 329 | { |
330 | struct adm1026_data *data = i2c_get_clientdata(client); | ||
331 | hwmon_device_unregister(data->class_dev); | ||
327 | i2c_detach_client(client); | 332 | i2c_detach_client(client); |
328 | kfree(i2c_get_clientdata(client)); | 333 | kfree(data); |
329 | return 0; | 334 | return 0; |
330 | } | 335 | } |
331 | 336 | ||
@@ -1555,6 +1560,12 @@ int adm1026_detect(struct i2c_adapter *adapter, int address, | |||
1555 | adm1026_init_client(new_client); | 1560 | adm1026_init_client(new_client); |
1556 | 1561 | ||
1557 | /* Register sysfs hooks */ | 1562 | /* Register sysfs hooks */ |
1563 | data->class_dev = hwmon_device_register(&new_client->dev); | ||
1564 | if (IS_ERR(data->class_dev)) { | ||
1565 | err = PTR_ERR(data->class_dev); | ||
1566 | goto exitdetach; | ||
1567 | } | ||
1568 | |||
1558 | device_create_file(&new_client->dev, &sensor_dev_attr_in0_input.dev_attr); | 1569 | device_create_file(&new_client->dev, &sensor_dev_attr_in0_input.dev_attr); |
1559 | device_create_file(&new_client->dev, &sensor_dev_attr_in0_max.dev_attr); | 1570 | device_create_file(&new_client->dev, &sensor_dev_attr_in0_max.dev_attr); |
1560 | device_create_file(&new_client->dev, &sensor_dev_attr_in0_min.dev_attr); | 1571 | device_create_file(&new_client->dev, &sensor_dev_attr_in0_min.dev_attr); |
@@ -1690,6 +1701,8 @@ int adm1026_detect(struct i2c_adapter *adapter, int address, | |||
1690 | return 0; | 1701 | return 0; |
1691 | 1702 | ||
1692 | /* Error out and cleanup code */ | 1703 | /* Error out and cleanup code */ |
1704 | exitdetach: | ||
1705 | i2c_detach_client(new_client); | ||
1693 | exitfree: | 1706 | exitfree: |
1694 | kfree(data); | 1707 | kfree(data); |
1695 | exit: | 1708 | exit: |