Skip to content

Commit

Permalink
arm: dts: imx: Fix boolean properties with values
Browse files Browse the repository at this point in the history
Boolean properties in DT are present or not present and don't take a value.
A property such as 'foo = <0>;' evaluated to true. IOW, the value doesn't
matter.

It may have been intended that 0 values are false, but there is no change
in behavior with this patch.

Signed-off-by: Rob Herring <robh@kernel.org>
Link: https://lore.kernel.org/r/Yk3mR5yae3gCkKhp@robh.at.kernel.org'
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
  • Loading branch information
Rob Herring authored and Arnd Bergmann committed Apr 7, 2022
1 parent 1a67653 commit 3b88103
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
32 changes: 16 additions & 16 deletions arch/arm/boot/dts/imx6qdl-aristainetos2.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -154,112 +154,112 @@
regulators {
bcore1 {
regulator-name = "bcore1";
regulator-always-on = <1>;
regulator-always-on;
regulator-min-microvolt = <300000>;
regulator-max-microvolt = <3300000>;
};

bcore2 {
regulator-name = "bcore2";
regulator-always-on = <1>;
regulator-always-on;
regulator-min-microvolt = <300000>;
regulator-max-microvolt = <3300000>;
};

bpro {
regulator-name = "bpro";
regulator-always-on = <1>;
regulator-always-on;
regulator-min-microvolt = <300000>;
regulator-max-microvolt = <3300000>;
};

bperi {
regulator-name = "bperi";
regulator-always-on = <1>;
regulator-always-on;
regulator-min-microvolt = <300000>;
regulator-max-microvolt = <3300000>;
};

bmem {
regulator-name = "bmem";
regulator-always-on = <1>;
regulator-always-on;
regulator-min-microvolt = <300000>;
regulator-max-microvolt = <3300000>;
};

ldo2 {
regulator-name = "ldo2";
regulator-always-on = <1>;
regulator-always-on;
regulator-min-microvolt = <300000>;
regulator-max-microvolt = <1800000>;
};

ldo3 {
regulator-name = "ldo3";
regulator-always-on = <1>;
regulator-always-on;
regulator-min-microvolt = <300000>;
regulator-max-microvolt = <3300000>;
};

ldo4 {
regulator-name = "ldo4";
regulator-always-on = <1>;
regulator-always-on;
regulator-min-microvolt = <300000>;
regulator-max-microvolt = <3300000>;
};

ldo5 {
regulator-name = "ldo5";
regulator-always-on = <1>;
regulator-always-on;
regulator-min-microvolt = <300000>;
regulator-max-microvolt = <3300000>;
};

ldo6 {
regulator-name = "ldo6";
regulator-always-on = <1>;
regulator-always-on;
regulator-min-microvolt = <300000>;
regulator-max-microvolt = <3300000>;
};

ldo7 {
regulator-name = "ldo7";
regulator-always-on = <1>;
regulator-always-on;
regulator-min-microvolt = <300000>;
regulator-max-microvolt = <3300000>;
};

ldo8 {
regulator-name = "ldo8";
regulator-always-on = <1>;
regulator-always-on;
regulator-min-microvolt = <300000>;
regulator-max-microvolt = <3300000>;
};

ldo9 {
regulator-name = "ldo9";
regulator-always-on = <1>;
regulator-always-on;
regulator-min-microvolt = <300000>;
regulator-max-microvolt = <3300000>;
};

ldo10 {
regulator-name = "ldo10";
regulator-always-on = <1>;
regulator-always-on;
regulator-min-microvolt = <300000>;
regulator-max-microvolt = <3300000>;
};

ldo11 {
regulator-name = "ldo11";
regulator-always-on = <1>;
regulator-always-on;
regulator-min-microvolt = <300000>;
regulator-max-microvolt = <3300000>;
};

bio {
regulator-name = "bio";
regulator-always-on = <1>;
regulator-always-on;
regulator-min-microvolt = <1800000>;
regulator-max-microvolt = <1800000>;
};
Expand Down
4 changes: 2 additions & 2 deletions arch/arm/boot/dts/imx6ul-phytec-segin-peb-av-02.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@
st,settling = <2>;
st,fraction-z = <7>;
st,i-drive = <1>;
touchscreen-inverted-x = <1>;
touchscreen-inverted-y = <1>;
touchscreen-inverted-x;
touchscreen-inverted-y;
};
};
};
Expand Down

0 comments on commit 3b88103

Please sign in to comment.