Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 199380
b: refs/heads/master
c: 872c1b1
h: refs/heads/master
v: v3
  • Loading branch information
Henrik Kretzschmar authored and Samuel Ortiz committed May 27, 2010
1 parent 9fca944 commit e25d449
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 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: f03cfcbc843ae6854c69dbc771762b83b3bea15f
refs/heads/master: 872c1b14e78661086ade8b501888850da2636eee
6 changes: 3 additions & 3 deletions trunk/drivers/mfd/88pm860x-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -566,7 +566,7 @@ static int __devinit device_irq_init(struct pm860x_chip *chip,
return ret;
}

static void __devexit device_irq_exit(struct pm860x_chip *chip)
static void device_irq_exit(struct pm860x_chip *chip)
{
if (chip->core_irq)
free_irq(chip->core_irq, chip);
Expand Down Expand Up @@ -703,7 +703,7 @@ static void __devinit device_8607_init(struct pm860x_chip *chip,
return;
}

int pm860x_device_init(struct pm860x_chip *chip,
int __devinit pm860x_device_init(struct pm860x_chip *chip,
struct pm860x_platform_data *pdata)
{
chip->core_irq = 0;
Expand Down Expand Up @@ -731,7 +731,7 @@ int pm860x_device_init(struct pm860x_chip *chip,
return 0;
}

void pm860x_device_exit(struct pm860x_chip *chip)
void __devexit pm860x_device_exit(struct pm860x_chip *chip)
{
device_irq_exit(chip);
mfd_remove_devices(chip->dev);
Expand Down
4 changes: 2 additions & 2 deletions trunk/include/linux/mfd/88pm860x.h
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ extern int pm860x_set_bits(struct i2c_client *, int, unsigned char,
unsigned char);

extern int pm860x_device_init(struct pm860x_chip *chip,
struct pm860x_platform_data *pdata);
extern void pm860x_device_exit(struct pm860x_chip *chip);
struct pm860x_platform_data *pdata) __devinit ;
extern void pm860x_device_exit(struct pm860x_chip *chip) __devexit ;

#endif /* __LINUX_MFD_88PM860X_H */

0 comments on commit e25d449

Please sign in to comment.