aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ramips/dts/mt7621_cudy_wr2100.dts
diff options
context:
space:
mode:
Diffstat (limited to 'target/linux/ramips/dts/mt7621_cudy_wr2100.dts')
-rw-r--r--target/linux/ramips/dts/mt7621_cudy_wr2100.dts18
1 files changed, 15 insertions, 3 deletions
diff --git a/target/linux/ramips/dts/mt7621_cudy_wr2100.dts b/target/linux/ramips/dts/mt7621_cudy_wr2100.dts
index 692c94da55..21d03322a7 100644
--- a/target/linux/ramips/dts/mt7621_cudy_wr2100.dts
+++ b/target/linux/ramips/dts/mt7621_cudy_wr2100.dts
@@ -78,7 +78,8 @@
};
&gmac0 {
- mtd-mac-address = <&bdinfo 0xde00>;
+ nvmem-cells = <&macaddr_bdinfo_de00>;
+ nvmem-cell-names = "mac-address";
};
&pcie {
@@ -194,8 +195,19 @@
status = "okay";
label = "wan";
- mtd-mac-address = <&bdinfo 0xde00>;
- mtd-mac-address-increment = <1>;
+ nvmem-cells = <&macaddr_bdinfo_de00>;
+ nvmem-cell-names = "mac-address";
+ mac-address-increment = <1>;
};
};
};
+
+&bdinfo {
+ compatible = "nvmem-cells";
+ #address-cells = <1>;
+ #size-cells = <1>;
+
+ macaddr_bdinfo_de00: macaddr@de00 {
+ reg = <0xde00 0x6>;
+ };
+};