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>
This commit is contained in:
Ansuel Smith
2021-04-02 23:50:02 +02:00
committed by Petr Štetiar
parent abc17bf306
commit 06bb4a5018
319 changed files with 4213 additions and 434 deletions

View File

@@ -134,7 +134,8 @@
&ethernet {
phy-handle = <&phy0>;
phy-mode = "rgmii";
mtd-mac-address = <&factory 0x28>;
nvmem-cells = <&macaddr_factory_28>;
nvmem-cell-names = "mac-address";
mdio-bus {
status = "okay";
@@ -156,3 +157,13 @@
&ohci {
status = "okay";
};
&factory {
compatible = "nvmem-cells";
#address-cells = <1>;
#size-cells = <1>;
macaddr_factory_28: macaddr@28 {
reg = <0x28 0x6>;
};
};