Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 59257
b: refs/heads/master
c: 88dfe98
h: refs/heads/master
i:
  59255: 6fca264
v: v3
  • Loading branch information
Russell King authored and Russell King committed Jul 12, 2007
1 parent 135b1e5 commit c4002f1
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 28 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: e176bb05fec4c00450302a75e81f8da3dc9e309e
refs/heads/master: 88dfe98c688e1700a4a9f73f8b7d570f4f52170d
1 change: 0 additions & 1 deletion trunk/arch/arm/common/sharpsl_pm.c
Original file line number Diff line number Diff line change
Expand Up @@ -766,7 +766,6 @@ static void sharpsl_apm_get_power_status(struct apm_power_info *info)
}

static struct pm_ops sharpsl_pm_ops = {
.prepare = pxa_pm_prepare,
.enter = corgi_pxa_pm_enter,
.valid = pm_valid_only_mem,
};
Expand Down
13 changes: 0 additions & 13 deletions trunk/arch/arm/mach-pxa/pxa25x.c
Original file line number Diff line number Diff line change
Expand Up @@ -106,18 +106,6 @@ EXPORT_SYMBOL(get_lcdclk_frequency_10khz);

#ifdef CONFIG_PM

int pxa_pm_prepare(suspend_state_t state)
{
switch (state) {
case PM_SUSPEND_MEM:
break;
default:
return -EINVAL;
}

return 0;
}

void pxa_cpu_pm_enter(suspend_state_t state)
{
extern void pxa_cpu_suspend(unsigned int);
Expand All @@ -135,7 +123,6 @@ void pxa_cpu_pm_enter(suspend_state_t state)
}

static struct pm_ops pxa25x_pm_ops = {
.prepare = pxa_pm_prepare,
.enter = pxa_pm_enter,
.valid = pm_valid_only_mem,
};
Expand Down
19 changes: 6 additions & 13 deletions trunk/arch/arm/mach-pxa/pxa27x.c
Original file line number Diff line number Diff line change
Expand Up @@ -123,17 +123,6 @@ EXPORT_SYMBOL(get_lcdclk_frequency_10khz);

#ifdef CONFIG_PM

int pxa_pm_prepare(suspend_state_t state)
{
switch (state) {
case PM_SUSPEND_MEM:
case PM_SUSPEND_STANDBY:
return 0;
default:
return -EINVAL;
}
}

void pxa_cpu_pm_enter(suspend_state_t state)
{
extern void pxa_cpu_standby(void);
Expand Down Expand Up @@ -163,10 +152,14 @@ void pxa_cpu_pm_enter(suspend_state_t state)
}
}

static int pxa27x_pm_valid(suspend_state_t state)
{
return state == PM_SUSPEND_MEM || state == PM_SUSPEND_STANDBY;
}

static struct pm_ops pxa27x_pm_ops = {
.prepare = pxa_pm_prepare,
.enter = pxa_pm_enter,
.valid = pm_valid_only_mem,
.valid = pxa27x_pm_valid,
};
#endif

Expand Down

0 comments on commit c4002f1

Please sign in to comment.