diff options
author | Ansuel Smith <ansuelsmth@gmail.com> | 2021-04-02 23:50:02 +0200 |
---|---|---|
committer | Petr Štetiar <ynezz@true.cz> | 2021-07-19 14:51:22 +0200 |
commit | 06bb4a5018cd84dc4553e71c273e2daae2c996ab (patch) | |
tree | 12d31c9dbc5e65ea63124755069e255dbd34db2c /target/linux/ramips/dts/mt7621_d-team_newifi-d2.dts | |
parent | abc17bf306acd1c5954fbba97134e891439f917c (diff) | |
download | upstream-06bb4a5018cd84dc4553e71c273e2daae2c996ab.tar.gz upstream-06bb4a5018cd84dc4553e71c273e2daae2c996ab.tar.bz2 upstream-06bb4a5018cd84dc4553e71c273e2daae2c996ab.zip |
ramips: 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/ramips/dts/mt7621_d-team_newifi-d2.dts')
-rw-r--r-- | target/linux/ramips/dts/mt7621_d-team_newifi-d2.dts | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/target/linux/ramips/dts/mt7621_d-team_newifi-d2.dts b/target/linux/ramips/dts/mt7621_d-team_newifi-d2.dts index 5622855f48..c04fe9e245 100644 --- a/target/linux/ramips/dts/mt7621_d-team_newifi-d2.dts +++ b/target/linux/ramips/dts/mt7621_d-team_newifi-d2.dts @@ -149,7 +149,8 @@ }; &gmac0 { - mtd-mac-address = <&factory 0xe000>; + nvmem-cells = <&macaddr_factory_e000>; + nvmem-cell-names = "mac-address"; }; &switch0 { @@ -177,7 +178,8 @@ port@4 { status = "okay"; label = "wan"; - mtd-mac-address = <&factory 0xe006>; + nvmem-cells = <&macaddr_factory_e006>; + nvmem-cell-names = "mac-address"; }; }; }; @@ -188,3 +190,17 @@ function = "gpio"; }; }; + +&factory { + compatible = "nvmem-cells"; + #address-cells = <1>; + #size-cells = <1>; + + macaddr_factory_e000: macaddr@e000 { + reg = <0xe000 0x6>; + }; + + macaddr_factory_e006: macaddr@e006 { + reg = <0xe006 0x6>; + }; +}; |