diff options
author | Tony Jones <tonyj@suse.de> | 2007-09-24 20:03:03 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2008-01-24 23:40:06 -0500 |
commit | 0c55445f201841bfd6c658c47df8311b6722f002 (patch) | |
tree | 68b02474461eea74e0fd54c5858a433b6aa942ab /drivers/mfd/ucb1x00-assabet.c | |
parent | 68db2bc98cc1594a1cc487755aff4340fd4f1611 (diff) |
MCP_UCB1200: Convert from class_device to device
struct class_device is going away, this converts the code to use struct
device instead.
Signed-off-by: Tony Jones <tonyj@suse.de>
Cc: Russell King <rmk@arm.linux.org.uk>
Cc: Kay Sievers <kay.sievers@vrfy.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/mfd/ucb1x00-assabet.c')
-rw-r--r-- | drivers/mfd/ucb1x00-assabet.c | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/drivers/mfd/ucb1x00-assabet.c b/drivers/mfd/ucb1x00-assabet.c index e325fa71f38b..b7c8e7813865 100644 --- a/drivers/mfd/ucb1x00-assabet.c +++ b/drivers/mfd/ucb1x00-assabet.c | |||
@@ -20,7 +20,8 @@ | |||
20 | #include "ucb1x00.h" | 20 | #include "ucb1x00.h" |
21 | 21 | ||
22 | #define UCB1X00_ATTR(name,input)\ | 22 | #define UCB1X00_ATTR(name,input)\ |
23 | static ssize_t name##_show(struct class_device *dev, char *buf) \ | 23 | static ssize_t name##_show(struct device *dev, struct device_attribute *attr, |
24 | char *buf) \ | ||
24 | { \ | 25 | { \ |
25 | struct ucb1x00 *ucb = classdev_to_ucb1x00(dev); \ | 26 | struct ucb1x00 *ucb = classdev_to_ucb1x00(dev); \ |
26 | int val; \ | 27 | int val; \ |
@@ -29,7 +30,7 @@ static ssize_t name##_show(struct class_device *dev, char *buf) \ | |||
29 | ucb1x00_adc_disable(ucb); \ | 30 | ucb1x00_adc_disable(ucb); \ |
30 | return sprintf(buf, "%d\n", val); \ | 31 | return sprintf(buf, "%d\n", val); \ |
31 | } \ | 32 | } \ |
32 | static CLASS_DEVICE_ATTR(name,0444,name##_show,NULL) | 33 | static DEVICE_ATTR(name,0444,name##_show,NULL) |
33 | 34 | ||
34 | UCB1X00_ATTR(vbatt, UCB_ADC_INP_AD1); | 35 | UCB1X00_ATTR(vbatt, UCB_ADC_INP_AD1); |
35 | UCB1X00_ATTR(vcharger, UCB_ADC_INP_AD0); | 36 | UCB1X00_ATTR(vcharger, UCB_ADC_INP_AD0); |
@@ -37,17 +38,17 @@ UCB1X00_ATTR(batt_temp, UCB_ADC_INP_AD2); | |||
37 | 38 | ||
38 | static int ucb1x00_assabet_add(struct ucb1x00_dev *dev) | 39 | static int ucb1x00_assabet_add(struct ucb1x00_dev *dev) |
39 | { | 40 | { |
40 | class_device_create_file(&dev->ucb->cdev, &class_device_attr_vbatt); | 41 | device_create_file(&dev->ucb->dev, &device_attr_vbatt); |
41 | class_device_create_file(&dev->ucb->cdev, &class_device_attr_vcharger); | 42 | device_create_file(&dev->ucb->dev, &device_attr_vcharger); |
42 | class_device_create_file(&dev->ucb->cdev, &class_device_attr_batt_temp); | 43 | device_create_file(&dev->ucb->dev, &device_attr_batt_temp); |
43 | return 0; | 44 | return 0; |
44 | } | 45 | } |
45 | 46 | ||
46 | static void ucb1x00_assabet_remove(struct ucb1x00_dev *dev) | 47 | static void ucb1x00_assabet_remove(struct ucb1x00_dev *dev) |
47 | { | 48 | { |
48 | class_device_remove_file(&dev->ucb->cdev, &class_device_attr_batt_temp); | 49 | device_remove_file(&dev->ucb->cdev, &device_attr_batt_temp); |
49 | class_device_remove_file(&dev->ucb->cdev, &class_device_attr_vcharger); | 50 | device_remove_file(&dev->ucb->cdev, &device_attr_vcharger); |
50 | class_device_remove_file(&dev->ucb->cdev, &class_device_attr_vbatt); | 51 | device_remove_file(&dev->ucb->cdev, &device_attr_vbatt); |
51 | } | 52 | } |
52 | 53 | ||
53 | static struct ucb1x00_driver ucb1x00_assabet_driver = { | 54 | static struct ucb1x00_driver ucb1x00_assabet_driver = { |