diff options
| author | Zhi-Jun You | 2026-02-06 11:20:32 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2026-02-10 23:35:33 +0000 |
| commit | eb369b267d774303056a7a5eca972621261922bd (patch) | |
| tree | e2986960dea034dad883948684300f93035c268f | |
| parent | 3f430451b11d43f1a690314cd146d8282d8e4f70 (diff) | |
| download | nbd-eb369b267d774303056a7a5eca972621261922bd.tar.gz | |
mediatek: filogic: add 6G precal to Acer Predator W6
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 common dts.
Fixes: dbc2923cbe21 ("mediatek: filogic: convert Acer Predator W6 to use NVMEM framework")
Signed-off-by: Zhi-Jun You <hujy652@protonmail.com>
Link: https://github.com/openwrt/openwrt/pull/21894
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
| -rw-r--r-- | target/linux/mediatek/dts/mt7986a-acer-predator-w6.dts | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/target/linux/mediatek/dts/mt7986a-acer-predator-w6.dts b/target/linux/mediatek/dts/mt7986a-acer-predator-w6.dts index db3d8a4249..9396556cd7 100644 --- a/target/linux/mediatek/dts/mt7986a-acer-predator-w6.dts +++ b/target/linux/mediatek/dts/mt7986a-acer-predator-w6.dts @@ -156,13 +156,17 @@ eeprom_factory_a0000: eeprom@a0000 { reg = <0xa0000 0x1000>; }; + + precal_factory_a1010: precal@a1010 { + reg = <0xa1010 0x62810>; + }; }; &slot0 { radio0: mt7915@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"; }; }; |