arm64: dts: rockchip: rk356x: correct gpio regulator usage

Should not be zero ahead, otherwise the min voltage is interpreted
as a wrong value by regulator code.

Change-Id: Ia141583f411a54bf26cb88b3992687539f29fec8
Signed-off-by: Shawn Lin <shawn.lin@rock-chips.com>
This commit is contained in:
Shawn Lin
2021-03-15 16:56:30 +08:00
committed by Tao Huang
parent 495f9016d9
commit 3677e0f619
9 changed files with 20 additions and 20 deletions

View File

@@ -55,11 +55,11 @@
pcie30_3v3: gpio-regulator {
compatible = "regulator-gpio";
regulator-name = "pcie30_3v3";
regulator-min-microvolt = <0100000>;
regulator-min-microvolt = <100000>;
regulator-max-microvolt = <3300000>;
gpios = <&gpio0 RK_PD4 GPIO_ACTIVE_HIGH>;
gpios-states = <0x1>;
states = <0100000 0x0
states = <100000 0x0
3300000 0x1>;
};