bmips: huawei-hg556a-c: use nvmem for wifi eeprom

The ralink custom property is deprecated and only kept around for
byteswap capability.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/21058
Signed-off-by: Robert Marko <robimarko@gmail.com>
This commit is contained in:
Rosen Penev 2025-12-06 13:14:03 -08:00 committed by Robert Marko
parent 5ba9354fc5
commit 72f43ac220

View file

@ -38,16 +38,26 @@
}; };
}; };
&cal_data {
nvmem-layout {
compatible = "fixed-layout";
#address-cells = <1>;
#size-cells = <1>;
cal_data_1fe00: calibration@1fe00 {
reg = <0x1fe00 0x200>;
};
};
};
&pci { &pci {
status = "okay"; status = "okay";
wifi@1,0 { wifi@1,0 {
compatible = "pci0,0"; compatible = "pci1814,3062";
reg = <0x0800 0 0 0 0>; reg = <0x0800 0 0 0 0>;
ralink,mtd-eeprom = <&cal_data 0x1fe00>; nvmem-cells = <&cal_data_1fe00>, <&macaddr_cfe_6a0 1>;
nvmem-cell-names = "calibration", "mac-address";
nvmem-cells = <&macaddr_cfe_6a0 1>;
nvmem-cell-names = "mac-address";
}; };
}; };