]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
arm64: dts: meson: fix boards regulators states format
authorNeil Armstrong <narmstrong@baylibre.com>
Fri, 23 Aug 2019 07:02:48 +0000 (09:02 +0200)
committerKevin Hilman <khilman@baylibre.com>
Thu, 29 Aug 2019 23:13:35 +0000 (16:13 -0700)
This fixes the following DT schemas check errors:
meson-gxbb-odroidc2.dt.yaml: gpio-regulator-tf_io: states:0: Additional items are not allowed (1800000, 1 were unexpected)
meson-gxbb-odroidc2.dt.yaml: gpio-regulator-tf_io: states:0: [3300000, 0, 1800000, 1] is too long
meson-gxbb-nexbox-a95x.dt.yaml: gpio-regulator: states:0: Additional items are not allowed (3300000, 1 were unexpected)
meson-gxbb-nexbox-a95x.dt.yaml: gpio-regulator: states:0: [1800000, 0, 3300000, 1] is too long
meson-gxbb-p200.dt.yaml: gpio-regulator: states:0: Additional items are not allowed (3300000, 1 were unexpected)
meson-gxbb-p200.dt.yaml: gpio-regulator: states:0: [1800000, 0, 3300000, 1] is too long
meson-gxl-s905x-hwacom-amazetv.dt.yaml: gpio-regulator: states:0: Additional items are not allowed (3300000, 1 were unexpected)
meson-gxl-s905x-hwacom-amazetv.dt.yaml: gpio-regulator: states:0: [1800000, 0, 3300000, 1] is too long
meson-gxbb-p201.dt.yaml: gpio-regulator: states:0: Additional items are not allowed (3300000, 1 were unexpected)
meson-gxbb-p201.dt.yaml: gpio-regulator: states:0: [1800000, 0, 3300000, 1] is too long
meson-g12b-odroid-n2.dt.yaml: gpio-regulator-tf_io: states:0: Additional items are not allowed (1800000, 1 were unexpected)
meson-g12b-odroid-n2.dt.yaml: gpio-regulator-tf_io: states:0: [3300000, 0, 1800000, 1] is too long
meson-gxl-s905x-nexbox-a95x.dt.yaml: gpio-regulator: states:0: Additional items are not allowed (3300000, 1 were unexpected)
meson-gxl-s905x-nexbox-a95x.dt.yaml: gpio-regulator: states:0: [1800000, 0, 3300000, 1] is too long

Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
Reviewed-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
Signed-off-by: Kevin Hilman <khilman@baylibre.com>
arch/arm64/boot/dts/amlogic/meson-g12b-odroid-n2.dts
arch/arm64/boot/dts/amlogic/meson-gxbb-nexbox-a95x.dts
arch/arm64/boot/dts/amlogic/meson-gxbb-odroidc2.dts
arch/arm64/boot/dts/amlogic/meson-gxbb-p20x.dtsi
arch/arm64/boot/dts/amlogic/meson-gxl-s905x-hwacom-amazetv.dts
arch/arm64/boot/dts/amlogic/meson-gxl-s905x-nexbox-a95x.dts

index 6cfc2c69bb4facf84c683f9d9f8a28c91e5ae68b..7c0cf510fd1693abdca7e126c23d1556f22526cf 100644 (file)
@@ -66,8 +66,8 @@ tf_io: gpio-regulator-tf_io {
                gpios = <&gpio_ao GPIOAO_9 GPIO_ACTIVE_HIGH>;
                gpios-states = <0>;
 
-               states = <3300000 0
-                         1800000 1>;
+               states = <3300000 0>,
+                        <1800000 1>;
        };
 
        flash_1v8: regulator-flash_1v8 {
index b636912a271578f89a8836bb796f6d07b432737a..afcf8a9f667b9757e6d79b7fc4fafbea70fad424 100644 (file)
@@ -75,8 +75,8 @@ vddio_card: gpio-regulator {
                gpios-states = <1>;
 
                /* Based on P200 schematics, signal CARD_1.8V/3.3V_CTR */
-               states = <1800000 0
-                         3300000 1>;
+               states = <1800000 0>,
+                        <3300000 1>;
        };
 
        vddio_boot: regulator-vddio_boot {
index 9972b1515da617993c7a872db083bd37ba10b32b..6039adda12eecf091f4809fcd1f7df3f2c7d9a05 100644 (file)
@@ -77,8 +77,8 @@ tf_io: gpio-regulator-tf_io {
                gpios = <&gpio_ao GPIOAO_3 GPIO_ACTIVE_HIGH>;
                gpios-states = <0>;
 
-               states = <3300000 0
-                         1800000 1>;
+               states = <3300000 0>,
+                        <1800000 1>;
        };
 
        vcc1v8: regulator-vcc1v8 {
index e8f925871edfc5a98dfe2e6852b952eba0757bb5..89f7b41b0e9efe5b220590b566b475589b42dcda 100644 (file)
@@ -46,8 +46,8 @@ vddio_card: gpio-regulator {
                gpios-states = <1>;
 
                /* Based on P200 schematics, signal CARD_1.8V/3.3V_CTR */
-               states = <1800000 0
-                         3300000 1>;
+               states = <1800000 0>,
+                        <3300000 1>;
 
                regulator-settling-time-up-us = <10000>;
                regulator-settling-time-down-us = <150000>;
index 796baea7a0bfb7f89b083d19bf034214cb7e7ca2..c8d74e61dec182a5b4cfa54d87dc936cd72ce70f 100644 (file)
@@ -38,8 +38,8 @@ vddio_card: gpio-regulator {
                gpios-states = <1>;
 
                /* Based on P200 schematics, signal CARD_1.8V/3.3V_CTR */
-               states = <1800000 0
-                         3300000 1>;
+               states = <1800000 0>,
+                        <3300000 1>;
        };
 
        vddio_boot: regulator-vddio_boot {
index 26907ac829301ef69f182b94ef41f36654a2b997..c433a031841f6230cac8dea5e02f25c00e69a609 100644 (file)
@@ -38,8 +38,8 @@ vddio_card: gpio-regulator {
                gpios-states = <1>;
 
                /* Based on P200 schematics, signal CARD_1.8V/3.3V_CTR */
-               states = <1800000 0
-                         3300000 1>;
+               states = <1800000 0>,
+                        <3300000 1>;
        };
 
        vddio_boot: regulator-vddio_boot {