[kernel] generic-2.6/2.6.30: refresh patches
[openwrt.git] / target / linux / s3c24xx / patches-2.6.28 / 005-dont-suspend-regulator.patch
1 From: Balaji Rao <balajirrao@openmoko.org>
2 Date: Mon, 5 Jan 2009 10:33:28 +0000 (+0000)
3 Subject: pcf50633 remove suspend_enable/disable regulator functions
4 X-Git-Tag: fork-to-stable-2.6.29-rc2~142
5 X-Git-Url: http://git.openmoko.org/?p=kernel.git;a=commitdiff_plain;h=276709515c384f4239c9479b56fcf008ae37eec8
6
7 pcf50633 remove suspend_enable/disable regulator functions
8
9 Since we don't switch to PMU.standby, on suspend we should not
10 be defining these.
11
12 Btw, this fixes the WSOD I observed on andy-tracking and also
13 gets rid of the regulator related backtrace seen upon resume.
14
15 Signed-off-by: Balaji Rao <balajirrao@openmoko.org>
16 ---
17
18 --- a/arch/arm/plat-s3c/pm.c
19 +++ b/arch/arm/plat-s3c/pm.c
20 @@ -18,7 +18,6 @@
21 #include <linux/delay.h>
22 #include <linux/serial_core.h>
23 #include <linux/io.h>
24 -#include <linux/regulator/machine.h>
25
26 #include <asm/cacheflush.h>
27 #include <mach/hardware.h>
28 @@ -353,22 +352,11 @@ static void s3c_pm_finish(void)
29 s3c_pm_check_cleanup();
30 }
31
32 -static int s3c_pm_begin(suspend_state_t state)
33 -{
34 - int ret = 0;
35 -
36 -#ifdef CONFIG_REGULATOR
37 - ret = regulator_suspend_prepare(state);
38 -#endif
39 - return ret;
40 -}
41 -
42 static struct platform_suspend_ops s3c_pm_ops = {
43 .enter = s3c_pm_enter,
44 .prepare = s3c_pm_prepare,
45 .finish = s3c_pm_finish,
46 .valid = suspend_valid_only_mem,
47 - .begin = s3c_pm_begin,
48 };
49
50 /* s3c_pm_init
51 --- a/drivers/regulator/pcf50633-regulator.c
52 +++ b/drivers/regulator/pcf50633-regulator.c
53 @@ -249,8 +249,6 @@ struct regulator_ops pcf50633_regulator_
54 .enable = pcf50633_regulator_enable,
55 .disable = pcf50633_regulator_disable,
56 .is_enabled = pcf50633_regulator_is_enabled,
57 - .set_suspend_enable = pcf50633_regulator_enable,
58 - .set_suspend_disable = pcf50633_regulator_disable,
59 };
60
61 static struct regulator_desc regulators[] = {
This page took 0.048416 seconds and 5 git commands to generate.