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/rt2880_buffalo_wzr-agl300nh.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/rt2880_buffalo_wzr-agl300nh.dts')
-rw-r--r-- | target/linux/ramips/dts/rt2880_buffalo_wzr-agl300nh.dts | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/target/linux/ramips/dts/rt2880_buffalo_wzr-agl300nh.dts b/target/linux/ramips/dts/rt2880_buffalo_wzr-agl300nh.dts index cd9e918404..b3ada11220 100644 --- a/target/linux/ramips/dts/rt2880_buffalo_wzr-agl300nh.dts +++ b/target/linux/ramips/dts/rt2880_buffalo_wzr-agl300nh.dts @@ -116,7 +116,8 @@ ðernet { status = "okay"; - mtd-mac-address = <&factory 0x4>; + nvmem-cells = <&macaddr_factory_4>; + nvmem-cell-names = "mac-address"; port@0 { mediatek,fixed-link = <1000 1 1 1>; @@ -139,3 +140,13 @@ &wmac { ralink,mtd-eeprom = <&factory 0x0>; }; + +&factory { + compatible = "nvmem-cells"; + #address-cells = <1>; + #size-cells = <1>; + + macaddr_factory_4: macaddr@4 { + reg = <0x4 0x6>; + }; +}; |