Commit 467fb18a authored by Brian Norris's avatar Brian Norris Committed by Heiko Stuebner

ARM: dts: rockchip: correct regulator power states for suspend

When getting translated from a downstream device tree that used slightly
different DT bindings, these regulators got labeled with the
"on-in-suspend" state, when they were actually supposed to be turned off
for S3 suspend. This was harmless, but not intentional, AFAICT.

Let's turn them off to get the optimal power state.
Signed-off-by: default avatarBrian Norris <briannorris@chromium.org>
Reviewed-by: default avatarJavier Martinez Canillas <javier@osg.samsung.com>
Signed-off-by: default avatarHeiko Stuebner <heiko@sntech.de>
parent 6a414e46
......@@ -99,7 +99,7 @@ mic_vcc: LDO_REG2 {
regulator-min-microvolt = <1800000>;
regulator-max-microvolt = <1800000>;
regulator-state-mem {
regulator-on-in-suspend;
regulator-off-in-suspend;
};
};
};
......
......@@ -109,7 +109,7 @@ vcc18_lcd: SWITCH_REG2 {
regulator-boot-on;
regulator-name = "vcc18_lcd";
regulator-state-mem {
regulator-on-in-suspend;
regulator-off-in-suspend;
};
};
};
......
......@@ -93,7 +93,7 @@ vccio_sd: LDO_REG4 {
regulator-min-microvolt = <3300000>;
regulator-max-microvolt = <3300000>;
regulator-state-mem {
regulator-on-in-suspend;
regulator-off-in-suspend;
};
};
......@@ -102,7 +102,7 @@ vcc33_sd: LDO_REG5 {
regulator-min-microvolt = <3300000>;
regulator-max-microvolt = <3300000>;
regulator-state-mem {
regulator-on-in-suspend;
regulator-off-in-suspend;
};
};
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment