[openwrt/openwrt] ath79: fix chip used for Meraki MR12 caldata_extract
LEDE Commits
lede-commits at lists.infradead.org
Sat Feb 13 15:21:08 EST 2021
adrian pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/e2db870398edcf5df7c23428505d8040eb5eecf8
commit e2db870398edcf5df7c23428505d8040eb5eecf8
Author: Martin Kennedy <hurricos at gmail.com>
AuthorDate: Sat Feb 13 05:38:52 2021 +0000
ath79: fix chip used for Meraki MR12 caldata_extract
The original setup fails to trigger ART calibration data
extraction for the AR9287. Instead, it would only have extracted
calibration data for an internal WMAC chip which is not present on
this board.
Fixes: 55d2db0e8ceb ("ath79: add support for Meraki MR12")
Signed-off-by: Martin Kennedy <hurricos at gmail.com>
[commit title/message facelift]
Signed-off-by: Adrian Schmutzler <freifunk at adrianschmutzler.de>
---
.../ath79/generic/base-files/etc/hotplug.d/firmware/10-ath9k-eeprom | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/target/linux/ath79/generic/base-files/etc/hotplug.d/firmware/10-ath9k-eeprom b/target/linux/ath79/generic/base-files/etc/hotplug.d/firmware/10-ath9k-eeprom
index 2e520ac067..08d9e017a7 100644
--- a/target/linux/ath79/generic/base-files/etc/hotplug.d/firmware/10-ath9k-eeprom
+++ b/target/linux/ath79/generic/base-files/etc/hotplug.d/firmware/10-ath9k-eeprom
@@ -56,9 +56,6 @@ case "$FIRMWARE" in
caldata_extract "calibrate" 0x1000 0x440
ath9k_patch_mac $(mtd_get_mac_ascii u-boot-env0 RADIOADDR1)
;;
- meraki,mr12)
- caldata_extract "art" 0x11000 0xeb8
- ;;
nec,wg800hp)
caldata_extract "art" 0x1000 0x440
ath9k_patch_mac $(mtd_get_mac_text board_data 0x680)
@@ -108,6 +105,9 @@ case "$FIRMWARE" in
caldata_extract "calibrate" 0x5000 0x440
ath9k_patch_mac $(mtd_get_mac_ascii u-boot-env0 RADIOADDR0)
;;
+ meraki,mr12)
+ caldata_extract "art" 0x11000 0xeb8
+ ;;
netgear,wnr2200-8m|\
netgear,wnr2200-16m|\
pcs,cap324|\
More information about the lede-commits
mailing list