summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlo Caione <[email protected]>2018-06-11 20:00:48 +0100
committerPhilipp Tomsich <[email protected]>2018-07-21 01:55:27 +0200
commit0d4d5fd73cf9e4851e84df09972e928641136314 (patch)
tree84afd622f0d7c02afa3d7e814c59d8ddb1489a89
parentabb8fad0970f824f3550f7b93a2508bf06e477d0 (diff)
rk3288: veyron: Init boot-on regulators
Use regulators_enable_boot_on() to init all the regulators with regulator-boot-on property. Signed-off-by: Carlo Caione <[email protected]> Reviewed-by: Simon Glass <[email protected]> Reviewed-by: Philipp Tomsich <[email protected]> Acked-by: Philipp Tomsich <[email protected]>
-rw-r--r--arch/arm/mach-rockchip/rk3288-board.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/arm/mach-rockchip/rk3288-board.c b/arch/arm/mach-rockchip/rk3288-board.c
index 8c128d4f94d..0365793009e 100644
--- a/arch/arm/mach-rockchip/rk3288-board.c
+++ b/arch/arm/mach-rockchip/rk3288-board.c
@@ -122,6 +122,12 @@ static int veyron_init(void)
if (IS_ERR_VALUE(ret))
return ret;
+ ret = regulators_enable_boot_on(false);
+ if (ret) {
+ debug("%s: Cannot enable boot on regulators\n", __func__);
+ return ret;
+ }
+
return 0;
}
#endif