Skip to content

Commit

Permalink
[ARM] Fix class_device damage caused by 0c55445
Browse files Browse the repository at this point in the history
Lots of compile errors in drivers/mfd/ucb1x00-assabet.c...

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
  • Loading branch information
Russell King authored and Russell King committed Jan 28, 2008
1 parent 193c3cc commit cd4c1eb
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions drivers/mfd/ucb1x00-assabet.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#include "ucb1x00.h"

#define UCB1X00_ATTR(name,input)\
static ssize_t name##_show(struct device *dev, struct device_attribute *attr,
static ssize_t name##_show(struct device *dev, struct device_attribute *attr, \
char *buf) \
{ \
struct ucb1x00 *ucb = classdev_to_ucb1x00(dev); \
Expand All @@ -38,17 +38,17 @@ UCB1X00_ATTR(batt_temp, UCB_ADC_INP_AD2);

static int ucb1x00_assabet_add(struct ucb1x00_dev *dev)
{
device_create_file(&dev->ucb->dev, &device_attr_vbatt);
device_create_file(&dev->ucb->dev, &device_attr_vcharger);
device_create_file(&dev->ucb->dev, &device_attr_batt_temp);
device_create_file(&dev->ucb->dev, &dev_attr_vbatt);
device_create_file(&dev->ucb->dev, &dev_attr_vcharger);
device_create_file(&dev->ucb->dev, &dev_attr_batt_temp);
return 0;
}

static void ucb1x00_assabet_remove(struct ucb1x00_dev *dev)
{
device_remove_file(&dev->ucb->cdev, &device_attr_batt_temp);
device_remove_file(&dev->ucb->cdev, &device_attr_vcharger);
device_remove_file(&dev->ucb->cdev, &device_attr_vbatt);
device_remove_file(&dev->ucb->dev, &dev_attr_batt_temp);
device_remove_file(&dev->ucb->dev, &dev_attr_vcharger);
device_remove_file(&dev->ucb->dev, &dev_attr_vbatt);
}

static struct ucb1x00_driver ucb1x00_assabet_driver = {
Expand Down

0 comments on commit cd4c1eb

Please sign in to comment.