diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2009-04-09 16:30:40 +0100 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2009-05-01 11:38:46 +0100 |
commit | f53aee29bef09070e4ab14488e43433b371844ce (patch) | |
tree | 436549ec8aa4a4f50c8c37b8df3ce081fcc18670 | |
parent | db9256f33c1b9ce72d2a126d51c7fe0de65f0f8c (diff) | |
download | linux-f53aee29bef09070e4ab14488e43433b371844ce.tar.bz2 |
[ARM] SMDK6410: Mark all supplies as always_on
Since no consumers are currently configured for the SMDK6410 mark all
the supplies on the board as being always_on, ensuring interoperability
with future regulator API changes to disable unused regulators.
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
-rw-r--r-- | arch/arm/mach-s3c6410/mach-smdk6410.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/mach-s3c6410/mach-smdk6410.c b/arch/arm/mach-s3c6410/mach-smdk6410.c index 15f9c7a2a6c7..697c0461f2b2 100644 --- a/arch/arm/mach-s3c6410/mach-smdk6410.c +++ b/arch/arm/mach-s3c6410/mach-smdk6410.c @@ -252,6 +252,7 @@ static struct regulator_init_data wm8350_ldo2_data = { .name = "PVDD_OTG", .min_uV = 3300000, .max_uV = 3300000, + .always_on = 1, }, }; @@ -261,6 +262,7 @@ static struct regulator_init_data wm8350_ldo3_data = { .name = "PVDD_LCD", .min_uV = 3000000, .max_uV = 3000000, + .always_on = 1, }, }; @@ -271,6 +273,7 @@ static struct regulator_init_data wm8350_ldo4_data = { .min_uV = 1200000, .max_uV = 1200000, .apply_uV = 1, + .always_on = 1, }, }; |