ARM: dts: imx6ul-var-som: fix warning for boolean property with a value

dmesg warning:

  OF: /soc/bus@2000000/ethernet@20b4000/mdio/ethernet-phy@3: Read of
      boolean property 'micrel,rmii-reference-clock-select-25-mhz' with a
      value.

Using of_property_read_bool() for non-boolean properties is deprecated and
results in a warning during runtime since commit c141ecc3ce
("of: Warn when of_property_read_bool() is used on non-boolean properties")

micrel,rmii-reference-clock-select-25-mhz is a boolean property and should
not have a value, so remove it.

Signed-off-by: Hugo Villeneuve <hvilleneuve@dimonoff.com>
Signed-off-by: Frank Li <Frank.Li@nxp.com>
This commit is contained in:
Hugo Villeneuve 2026-03-05 13:06:17 -05:00 committed by Frank Li
parent 0372cc5776
commit f9abbeb3e6
2 changed files with 2 additions and 2 deletions

View File

@ -79,7 +79,7 @@ ethphy1: ethernet-phy@3 {
reset-gpios = <&gpio5 5 GPIO_ACTIVE_LOW>;
reset-assert-us = <100000>;
micrel,led-mode = <0>;
micrel,rmii-reference-clock-select-25-mhz = <1>;
micrel,rmii-reference-clock-select-25-mhz;
};
};
};

View File

@ -64,7 +64,7 @@ ethphy0: ethernet-phy@1 {
reset-gpios = <&gpio5 0 GPIO_ACTIVE_LOW>;
reset-assert-us = <100000>;
micrel,led-mode = <1>;
micrel,rmii-reference-clock-select-25-mhz = <1>;
micrel,rmii-reference-clock-select-25-mhz;
};
};
};