[openwrt/openwrt] ramips: Fix use mac-base for TP-Link TL-MR6400 v4 and v5

LEDE Commits lede-commits at lists.infradead.org
Thu May 16 03:13:53 PDT 2024


hauke pushed a commit to openwrt/openwrt.git, branch main:
https://git.openwrt.org/9c84d619fcf31b810cdea18d751a4418d956da81

commit 9c84d619fcf31b810cdea18d751a4418d956da81
Author: Hauke Mehrtens <hauke at hauke-m.de>
AuthorDate: Thu May 9 22:10:52 2024 +0200

    ramips: Fix use mac-base for TP-Link TL-MR6400 v4 and v5
    
    Use mac-base for mac-base TP-Link TL-MR6400 v4 and v5
    
    Signed-off-by: Hauke Mehrtens <hauke at hauke-m.de>
---
 target/linux/ramips/dts/mt7628an_tplink_tl-mr6400-v4.dts | 6 ++++--
 target/linux/ramips/dts/mt7628an_tplink_tl-mr6400-v5.dts | 6 ++++--
 2 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/target/linux/ramips/dts/mt7628an_tplink_tl-mr6400-v4.dts b/target/linux/ramips/dts/mt7628an_tplink_tl-mr6400-v4.dts
index 19783274e7..67cc54650f 100644
--- a/target/linux/ramips/dts/mt7628an_tplink_tl-mr6400-v4.dts
+++ b/target/linux/ramips/dts/mt7628an_tplink_tl-mr6400-v4.dts
@@ -91,12 +91,12 @@
 &wmac {
 	status = "okay";
 
-	nvmem-cells = <&eeprom_factory_20000>, <&macaddr_factory_1f100>;
+	nvmem-cells = <&eeprom_factory_20000>, <&macaddr_factory_1f100 0>;
 	nvmem-cell-names = "eeprom", "mac-address";
 };
 
 &ethernet {
-	nvmem-cells = <&macaddr_factory_1f100>;
+	nvmem-cells = <&macaddr_factory_1f100 0>;
 	nvmem-cell-names = "mac-address";
 };
 
@@ -107,7 +107,9 @@
 		#size-cells = <1>;
 
 		macaddr_factory_1f100: macaddr at 1f100 {
+			compatible = "mac-base";
 			reg = <0x1f100 0x6>;
+			#nvmem-cell-cells = <1>;
 		};
 	};
 };
diff --git a/target/linux/ramips/dts/mt7628an_tplink_tl-mr6400-v5.dts b/target/linux/ramips/dts/mt7628an_tplink_tl-mr6400-v5.dts
index 857e61f614..609452dfe1 100644
--- a/target/linux/ramips/dts/mt7628an_tplink_tl-mr6400-v5.dts
+++ b/target/linux/ramips/dts/mt7628an_tplink_tl-mr6400-v5.dts
@@ -91,12 +91,12 @@
 &wmac {
 	status = "okay";
 
-	nvmem-cells = <&eeprom_factory_20000>, <&macaddr_factory_1f100>;
+	nvmem-cells = <&eeprom_factory_20000>, <&macaddr_factory_1f100 0>;
 	nvmem-cell-names = "eeprom", "mac-address";
 };
 
 &ethernet {
-	nvmem-cells = <&macaddr_factory_1f100>;
+	nvmem-cells = <&macaddr_factory_1f100 0>;
 	nvmem-cell-names = "mac-address";
 };
 
@@ -107,7 +107,9 @@
 		#size-cells = <1>;
 
 		macaddr_factory_1f100: macaddr at 1f100 {
+			compatible = "mac-base";
 			reg = <0x1f100 0x6>;
+			#nvmem-cell-cells = <1>;
 		};
 	};
 };




More information about the lede-commits mailing list