diff options
author | Ansuel Smith <ansuelsmth@gmail.com> | 2021-04-02 23:47:31 +0200 |
---|---|---|
committer | Petr Štetiar <ynezz@true.cz> | 2021-07-19 14:51:22 +0200 |
commit | abc17bf306acd1c5954fbba97134e891439f917c (patch) | |
tree | b06eb2c2e7847215cbe8d2001d4a5b6685ac763f /target/linux/ath79/dts/ar7161_buffalo_wzr-hp-ag300h.dtsi | |
parent | 2ca8e424b93cbf359a8028acbbe9acabdb9365a9 (diff) | |
download | upstream-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/ar7161_buffalo_wzr-hp-ag300h.dtsi')
-rw-r--r-- | target/linux/ath79/dts/ar7161_buffalo_wzr-hp-ag300h.dtsi | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/target/linux/ath79/dts/ar7161_buffalo_wzr-hp-ag300h.dtsi b/target/linux/ath79/dts/ar7161_buffalo_wzr-hp-ag300h.dtsi index 15ac148697..006755e418 100644 --- a/target/linux/ath79/dts/ar7161_buffalo_wzr-hp-ag300h.dtsi +++ b/target/linux/ath79/dts/ar7161_buffalo_wzr-hp-ag300h.dtsi @@ -247,7 +247,8 @@ ð0 { status = "okay"; - mtd-mac-address = <&art 0x120c>; + nvmem-cells = <&macaddr_art_120c>; + nvmem-cell-names = "mac-address"; fixed-link { speed = <1000>; @@ -258,8 +259,23 @@ ð1 { status = "okay"; - mtd-mac-address = <&art 0x520c>; + nvmem-cells = <&macaddr_art_520c>; + nvmem-cell-names = "mac-address"; mac-address-increment = <1>; phy-handle = <&phy4>; }; + +&art { + compatible = "nvmem-cells"; + #address-cells = <1>; + #size-cells = <1>; + + macaddr_art_120c: macaddr@120c { + reg = <0x120c 0x6>; + }; + + macaddr_art_520c: macaddr@520c { + reg = <0x520c 0x6>; + }; +}; |