aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ath79/dts/tp9343_tplink_tl-wr941hp-v1.dts
diff options
context:
space:
mode:
authorAnsuel Smith <ansuelsmth@gmail.com>2021-04-02 23:47:31 +0200
committerPetr Štetiar <ynezz@true.cz>2021-07-19 14:51:22 +0200
commitabc17bf306acd1c5954fbba97134e891439f917c (patch)
treeb06eb2c2e7847215cbe8d2001d4a5b6685ac763f /target/linux/ath79/dts/tp9343_tplink_tl-wr941hp-v1.dts
parent2ca8e424b93cbf359a8028acbbe9acabdb9365a9 (diff)
downloadupstream-abc17bf306acd1c5954fbba97134e891439f917c.tar.gz
upstream-abc17bf306acd1c5954fbba97134e891439f917c.tar.bz2
upstream-abc17bf306acd1c5954fbba97134e891439f917c.zip
ath79: convert mtd-mac-address to nvmem implementation
Define nvmem-cells and convert mtd-mac-address to nvmem implementation. The conversion is done with an automated script. Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
Diffstat (limited to 'target/linux/ath79/dts/tp9343_tplink_tl-wr941hp-v1.dts')
-rw-r--r--target/linux/ath79/dts/tp9343_tplink_tl-wr941hp-v1.dts21
1 files changed, 17 insertions, 4 deletions
diff --git a/target/linux/ath79/dts/tp9343_tplink_tl-wr941hp-v1.dts b/target/linux/ath79/dts/tp9343_tplink_tl-wr941hp-v1.dts
index 7451f00740..d4638f1acf 100644
--- a/target/linux/ath79/dts/tp9343_tplink_tl-wr941hp-v1.dts
+++ b/target/linux/ath79/dts/tp9343_tplink_tl-wr941hp-v1.dts
@@ -136,19 +136,32 @@
phy-handle = <&swphy0>;
- mtd-mac-address = <&config 0x8>;
- mtd-mac-address-increment = <1>;
+ nvmem-cells = <&macaddr_config_8>;
+ nvmem-cell-names = "mac-address";
+ mac-address-increment = <1>;
};
&eth1 {
status = "okay";
- mtd-mac-address = <&config 0x8>;
+ nvmem-cells = <&macaddr_config_8>;
+ nvmem-cell-names = "mac-address";
};
&wmac {
status = "okay";
mtd-cal-data = <&art 0x1000>;
- mtd-mac-address = <&config 0x8>;
+ nvmem-cells = <&macaddr_config_8>;
+ nvmem-cell-names = "mac-address";
+};
+
+&config {
+ compatible = "nvmem-cells";
+ #address-cells = <1>;
+ #size-cells = <1>;
+
+ macaddr_config_8: macaddr@8 {
+ reg = <0x8 0x6>;
+ };
};