ath79: convert mtd-mac-address to nvmem implementation
[openwrt/openwrt.git] / target / linux / ath79 / dts / ar7161_buffalo_wzr-hp-ag300h.dtsi
index 15ac14869760e487127fe284efbc389d47f8182d..006755e4182d0a79c0933e59bdcb4aafc173874b 100644 (file)
 &eth0 {
        status = "okay";
 
-       mtd-mac-address = <&art 0x120c>;
+       nvmem-cells = <&macaddr_art_120c>;
+       nvmem-cell-names = "mac-address";
 
        fixed-link {
                speed = <1000>;
 &eth1 {
        status = "okay";
 
-       mtd-mac-address = <&art 0x520c>;
+       nvmem-cells = <&macaddr_art_520c>;
+       nvmem-cell-names = "mac-address";
        mac-address-increment = <1>;
 
        phy-handle = <&phy4>;
 };
+
+&art {
+       compatible = "nvmem-cells";
+       #address-cells = <1>;
+       #size-cells = <1>;
+
+       macaddr_art_120c: macaddr@120c {
+               reg = <0x120c 0x6>;
+       };
+
+       macaddr_art_520c: macaddr@520c {
+               reg = <0x520c 0x6>;
+       };
+};