ath79: fix dtc warnings in eap1750h
authorChristian Lamparter <chunkeey@gmail.com>
Thu, 15 Dec 2022 14:25:45 +0000 (15:25 +0100)
committerChristian Lamparter <chunkeey@gmail.com>
Thu, 15 Dec 2022 14:45:47 +0000 (15:45 +0100)
|109.3-19: Warning (reg_format): macaddr@0:reg:property has invalid length (8 bytes)
|113.3-24: Warning (reg_format): calibration@1000:reg: property has invalid length (8 bytes)
|117.3-24: Warning (reg_format): calibration@5000:reg: property has invalid length (8 bytes)

also integrate the art-nodes nodes back into the partition-subnode
and change the calibration labels to match what everyone else is
doing.

Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
target/linux/ath79/dts/qca9558_engenius_eap1750h.dts

index 8a642784269ed12ab6637f21a9d42678de26f058..605030455c49bab66106c7f874890116f8c649b3 100644 (file)
 };
 
 &partitions {
-       art: partition@ff0000 {
+       partition@ff0000 {
                label = "art";
                reg = <0xff0000 0x010000>;
                read-only;
+
+               compatible = "nvmem-cells";
+               #address-cells = <1>;
+               #size-cells = <1>;
+
+               macaddr_art_0: macaddr@0 {
+                       reg = <0x0 0x6>;
+               };
+
+               calibration_art_1000: calibration@1000 {
+                       reg = <0x1000 0x440>;
+               };
+
+               calibration_art_5000: calibration@5000 {
+                       reg = <0x5000 0x844>;
+               };
        };
 };
 
 &wmac {
        status = "okay";
 
-       nvmem-cells = <&macaddr_art_0>, <&calibration_ath9k>;
+       nvmem-cells = <&macaddr_art_0>, <&calibration_art_1000>;
        nvmem-cell-names = "mac-address", "calibration";
        mac-address-increment = <1>;
 };
 &ath10k {
        status = "okay";
 
-       nvmem-cells = <&macaddr_art_0>, <&calibration_ath10k>;
+       nvmem-cells = <&macaddr_art_0>, <&calibration_art_5000>;
        nvmem-cell-names = "mac-address", "calibration";
        mac-address-increment = <2>;
 };
-
-&art {
-       compatible = "nvmem-cells";
-
-       macaddr_art_0: macaddr@0 {
-               reg = <0x0 0x6>;
-       };
-
-       calibration_ath9k: calibration@1000 {
-               reg = <0x1000 0x440>;
-       };
-
-       calibration_ath10k: calibration@5000 {
-               reg = <0x5000 0x844>;
-       };
-};