Commit 8fbf1bb7 authored by Olof Johansson's avatar Olof Johansson

Merge tag 'sunxi-h3-h5-for-5.3-201906210812' of...

Merge tag 'sunxi-h3-h5-for-5.3-201906210812' of https://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux into arm/dt

This time we only have a single patch for our command branch between
arm and arm64, a fix for the array syntax raised by our DT schemas.

* tag 'sunxi-h3-h5-for-5.3-201906210812' of https://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux:
  ARM: dts: sunxi: h3/h5: Fix GPIO regulator state array
Signed-off-by: default avatarOlof Johansson <olof@lixom.net>
parents 3264c72d 9fbbbb7b
...@@ -59,8 +59,7 @@ reg_vdd_cpux: vdd-cpux-regulator { ...@@ -59,8 +59,7 @@ reg_vdd_cpux: vdd-cpux-regulator {
gpios = <&r_pio 0 1 GPIO_ACTIVE_HIGH>; /* PL1 */ gpios = <&r_pio 0 1 GPIO_ACTIVE_HIGH>; /* PL1 */
enable-active-high; enable-active-high;
gpios-states = <0x1>; gpios-states = <0x1>;
states = <1100000 0x0 states = <1100000 0>, <1300000 1>;
1300000 0x1>;
}; };
wifi_pwrseq: wifi_pwrseq { wifi_pwrseq: wifi_pwrseq {
......
...@@ -102,8 +102,7 @@ reg_vdd_cpux: vdd-cpux-regulator { ...@@ -102,8 +102,7 @@ reg_vdd_cpux: vdd-cpux-regulator {
gpios = <&r_pio 0 6 GPIO_ACTIVE_HIGH>; /* PL6 */ gpios = <&r_pio 0 6 GPIO_ACTIVE_HIGH>; /* PL6 */
enable-active-high; enable-active-high;
gpios-states = <1>; gpios-states = <1>;
states = <1100000 0 states = <1100000 0>, <1300000 1>;
1300000 1>;
}; };
wifi_pwrseq: wifi_pwrseq { wifi_pwrseq: wifi_pwrseq {
......
...@@ -109,8 +109,7 @@ reg_vdd_cpux: vdd-cpux-regulator { ...@@ -109,8 +109,7 @@ reg_vdd_cpux: vdd-cpux-regulator {
gpios = <&r_pio 0 6 GPIO_ACTIVE_HIGH>; /* PL6 */ gpios = <&r_pio 0 6 GPIO_ACTIVE_HIGH>; /* PL6 */
enable-active-high; enable-active-high;
gpios-states = <0x1>; gpios-states = <0x1>;
states = <1100000 0x0 states = <1100000 0>, <1300000 1>;
1300000 0x1>;
}; };
}; };
......
...@@ -21,8 +21,7 @@ reg_vdd_cpux: vdd-cpux { ...@@ -21,8 +21,7 @@ reg_vdd_cpux: vdd-cpux {
regulator-ramp-delay = <50>; /* 4ms */ regulator-ramp-delay = <50>; /* 4ms */
gpios = <&r_pio 0 1 GPIO_ACTIVE_HIGH>; /* PL1 */ gpios = <&r_pio 0 1 GPIO_ACTIVE_HIGH>; /* PL1 */
gpios-states = <0x1>; gpios-states = <0x1>;
states = <1100000 0x0 states = <1100000 0>, <1300000 1>;
1300000 0x1>;
}; };
}; };
......
...@@ -55,8 +55,7 @@ vdd_cpux: gpio-regulator { ...@@ -55,8 +55,7 @@ vdd_cpux: gpio-regulator {
regulator-ramp-delay = <50>; /* 4ms */ regulator-ramp-delay = <50>; /* 4ms */
gpios = <&r_pio 0 6 GPIO_ACTIVE_HIGH>; /* PL6 */ gpios = <&r_pio 0 6 GPIO_ACTIVE_HIGH>; /* PL6 */
gpios-states = <0x1>; gpios-states = <0x1>;
states = <1100000 0x0 states = <1100000 0>, <1300000 1>;
1300000 0x1>;
}; };
}; };
......
...@@ -104,8 +104,7 @@ vdd_cpux: gpio-regulator { ...@@ -104,8 +104,7 @@ vdd_cpux: gpio-regulator {
regulator-ramp-delay = <50>; /* 4ms */ regulator-ramp-delay = <50>; /* 4ms */
gpios = <&r_pio 0 6 GPIO_ACTIVE_HIGH>; gpios = <&r_pio 0 6 GPIO_ACTIVE_HIGH>;
gpios-states = <0x1>; gpios-states = <0x1>;
states = <1100000 0x0 states = <1100000 0>, <1300000 1>;
1300000 0x1>;
}; };
wifi_pwrseq: wifi_pwrseq { wifi_pwrseq: wifi_pwrseq {
......
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