[openwrt/openwrt] mediatek: filogic: add 6G precal to Acer Vero W6m
LEDE Commits
lede-commits at lists.infradead.org
Wed Feb 11 16:01:10 PST 2026
hauke pushed a commit to openwrt/openwrt.git, branch openwrt-25.12:
https://git.openwrt.org/8bafa45f35ef8416d7f66b47ae1cd9c8c0345704
commit 8bafa45f35ef8416d7f66b47ae1cd9c8c0345704
Author: Zhi-Jun You <hujy652 at protonmail.com>
AuthorDate: Fri Feb 6 19:25:30 2026 +0800
mediatek: filogic: add 6G precal to Acer Vero W6m
Bootlog has the following line:
mt7915e 0000:01:00.0: missing precal data, size=403472
It is because precal was not included in the previous NVMEM conversion.
Fix this by adding it to the dts.
Fixes: dbc2923cbe21 ("mediatek: filogic: convert Acer Predator W6 to use NVMEM framework")
Signed-off-by: Zhi-Jun You <hujy652 at protonmail.com>
Link: https://github.com/openwrt/openwrt/pull/21894
Signed-off-by: Hauke Mehrtens <hauke at hauke-m.de>
(cherry picked from commit c62bab29d5060798ef0d4b28d246a0bc4671c356)
---
target/linux/mediatek/dts/mt7986a-acer-vero-w6m.dts | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/target/linux/mediatek/dts/mt7986a-acer-vero-w6m.dts b/target/linux/mediatek/dts/mt7986a-acer-vero-w6m.dts
index 7927efcb00..683be1cf50 100644
--- a/target/linux/mediatek/dts/mt7986a-acer-vero-w6m.dts
+++ b/target/linux/mediatek/dts/mt7986a-acer-vero-w6m.dts
@@ -51,13 +51,17 @@
eeprom_factory_a0000: eeprom at a0000 {
reg = <0xa0000 0x1000>;
};
+
+ precal_factory_a1010: precal at a1010 {
+ reg = <0xa1010 0x62810>;
+ };
};
&slot0 {
radio0: mt7915 at 0,0 {
reg = <0x0000 0 0 0 0>;
- nvmem-cells = <&eeprom_factory_a0000>;
- nvmem-cell-names = "eeprom";
+ nvmem-cells = <&eeprom_factory_a0000>, <&precal_factory_a1010>;
+ nvmem-cell-names = "eeprom", "precal";
};
};
More information about the lede-commits
mailing list