Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 251939
b: refs/heads/master
c: cea438d
h: refs/heads/master
i:
  251937: fec3308
  251935: 8c593b6
v: v3
  • Loading branch information
Haojian Zhuang authored and Samuel Ortiz committed May 26, 2011
1 parent 21d2425 commit 40284f1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 19 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: f5fb758de6d2ddae572ee39de54d60bf5593652a
refs/heads/master: cea438dda618797922d0bfc4814e832bab19ac19
28 changes: 10 additions & 18 deletions trunk/drivers/mfd/88pm860x-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,6 @@ static void device_irq_exit(struct pm860x_chip *chip)
}

static void __devinit device_bk_init(struct pm860x_chip *chip,
struct i2c_client *i2c,
struct pm860x_platform_data *pdata)
{
int ret;
Expand Down Expand Up @@ -540,7 +539,6 @@ static void __devinit device_bk_init(struct pm860x_chip *chip,
}

static void __devinit device_led_init(struct pm860x_chip *chip,
struct i2c_client *i2c,
struct pm860x_platform_data *pdata)
{
int ret;
Expand Down Expand Up @@ -576,7 +574,6 @@ static void __devinit device_led_init(struct pm860x_chip *chip,
}

static void __devinit device_regulator_init(struct pm860x_chip *chip,
struct i2c_client *i2c,
struct pm860x_platform_data *pdata)
{
struct regulator_init_data *initdata;
Expand Down Expand Up @@ -633,7 +630,6 @@ static void __devinit device_regulator_init(struct pm860x_chip *chip,
}

static void __devinit device_rtc_init(struct pm860x_chip *chip,
struct i2c_client *i2c,
struct pm860x_platform_data *pdata)
{
int ret;
Expand All @@ -653,7 +649,6 @@ static void __devinit device_rtc_init(struct pm860x_chip *chip,
}

static void __devinit device_touch_init(struct pm860x_chip *chip,
struct i2c_client *i2c,
struct pm860x_platform_data *pdata)
{
int ret;
Expand All @@ -673,7 +668,6 @@ static void __devinit device_touch_init(struct pm860x_chip *chip,
}

static void __devinit device_power_init(struct pm860x_chip *chip,
struct i2c_client *i2c,
struct pm860x_platform_data *pdata)
{
int ret;
Expand Down Expand Up @@ -701,7 +695,6 @@ static void __devinit device_power_init(struct pm860x_chip *chip,
}

static void __devinit device_onkey_init(struct pm860x_chip *chip,
struct i2c_client *i2c,
struct pm860x_platform_data *pdata)
{
int ret;
Expand All @@ -716,7 +709,6 @@ static void __devinit device_onkey_init(struct pm860x_chip *chip,
}

static void __devinit device_codec_init(struct pm860x_chip *chip,
struct i2c_client *i2c,
struct pm860x_platform_data *pdata)
{
int ret;
Expand Down Expand Up @@ -784,12 +776,12 @@ static void __devinit device_8607_init(struct pm860x_chip *chip,
if (ret < 0)
goto out;

device_regulator_init(chip, i2c, pdata);
device_rtc_init(chip, i2c, pdata);
device_onkey_init(chip, i2c, pdata);
device_touch_init(chip, i2c, pdata);
device_power_init(chip, i2c, pdata);
device_codec_init(chip, i2c, pdata);
device_regulator_init(chip, pdata);
device_rtc_init(chip, pdata);
device_onkey_init(chip, pdata);
device_touch_init(chip, pdata);
device_power_init(chip, pdata);
device_codec_init(chip, pdata);
out:
return;
}
Expand All @@ -801,8 +793,8 @@ int __devinit pm860x_device_init(struct pm860x_chip *chip,

switch (chip->id) {
case CHIP_PM8606:
device_bk_init(chip, chip->client, pdata);
device_led_init(chip, chip->client, pdata);
device_bk_init(chip, pdata);
device_led_init(chip, pdata);
break;
case CHIP_PM8607:
device_8607_init(chip, chip->client, pdata);
Expand All @@ -812,8 +804,8 @@ int __devinit pm860x_device_init(struct pm860x_chip *chip,
if (chip->companion) {
switch (chip->id) {
case CHIP_PM8607:
device_bk_init(chip, chip->companion, pdata);
device_led_init(chip, chip->companion, pdata);
device_bk_init(chip, pdata);
device_led_init(chip, pdata);
break;
case CHIP_PM8606:
device_8607_init(chip, chip->companion, pdata);
Expand Down

0 comments on commit 40284f1

Please sign in to comment.