Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 287579
b: refs/heads/master
c: a0bb10e
h: refs/heads/master
i:
  287577: 4f084eb
  287575: 96c7305
v: v3
  • Loading branch information
Russell King committed Feb 13, 2012
1 parent c510fd8 commit 2f550cc
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 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: 0bf68f53f164e169c2bc77f707338fc595b6ccfc
refs/heads/master: a0bb10e86642064f6cec9e23f523127e5cfbe609
20 changes: 10 additions & 10 deletions trunk/drivers/mfd/twl4030-power.c
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ static u8 res_config_addrs[] = {
[RES_MAIN_REF] = 0x94,
};

static int __init twl4030_write_script_byte(u8 address, u8 byte)
static int __devinit twl4030_write_script_byte(u8 address, u8 byte)
{
int err;

Expand All @@ -138,7 +138,7 @@ static int __init twl4030_write_script_byte(u8 address, u8 byte)
return err;
}

static int __init twl4030_write_script_ins(u8 address, u16 pmb_message,
static int __devinit twl4030_write_script_ins(u8 address, u16 pmb_message,
u8 delay, u8 next)
{
int err;
Expand All @@ -158,7 +158,7 @@ static int __init twl4030_write_script_ins(u8 address, u16 pmb_message,
return err;
}

static int __init twl4030_write_script(u8 address, struct twl4030_ins *script,
static int __devinit twl4030_write_script(u8 address, struct twl4030_ins *script,
int len)
{
int err;
Expand All @@ -183,7 +183,7 @@ static int __init twl4030_write_script(u8 address, struct twl4030_ins *script,
return err;
}

static int __init twl4030_config_wakeup3_sequence(u8 address)
static int __devinit twl4030_config_wakeup3_sequence(u8 address)
{
int err;
u8 data;
Expand All @@ -208,7 +208,7 @@ static int __init twl4030_config_wakeup3_sequence(u8 address)
return err;
}

static int __init twl4030_config_wakeup12_sequence(u8 address)
static int __devinit twl4030_config_wakeup12_sequence(u8 address)
{
int err = 0;
u8 data;
Expand Down Expand Up @@ -262,7 +262,7 @@ static int __init twl4030_config_wakeup12_sequence(u8 address)
return err;
}

static int __init twl4030_config_sleep_sequence(u8 address)
static int __devinit twl4030_config_sleep_sequence(u8 address)
{
int err;

Expand All @@ -276,7 +276,7 @@ static int __init twl4030_config_sleep_sequence(u8 address)
return err;
}

static int __init twl4030_config_warmreset_sequence(u8 address)
static int __devinit twl4030_config_warmreset_sequence(u8 address)
{
int err;
u8 rd_data;
Expand Down Expand Up @@ -324,7 +324,7 @@ static int __init twl4030_config_warmreset_sequence(u8 address)
return err;
}

static int __init twl4030_configure_resource(struct twl4030_resconfig *rconfig)
static int __devinit twl4030_configure_resource(struct twl4030_resconfig *rconfig)
{
int rconfig_addr;
int err;
Expand Down Expand Up @@ -416,7 +416,7 @@ static int __init twl4030_configure_resource(struct twl4030_resconfig *rconfig)
return 0;
}

static int __init load_twl4030_script(struct twl4030_script *tscript,
static int __devinit load_twl4030_script(struct twl4030_script *tscript,
u8 address)
{
int err;
Expand Down Expand Up @@ -527,7 +527,7 @@ void twl4030_power_off(void)
pr_err("TWL4030 Unable to power off\n");
}

void __init twl4030_power_init(struct twl4030_power_data *twl4030_scripts)
void __devinit twl4030_power_init(struct twl4030_power_data *twl4030_scripts)
{
int err = 0;
int i;
Expand Down

0 comments on commit 2f550cc

Please sign in to comment.