diff mbox series

[OpenWrt-Devel] ath79: use caldata patching for Archer C58/C59

Message ID 20181230212842.7549-1-mail@david-bauer.net
State Accepted
Delegated to: Mathias Kresin
Headers show
Series [OpenWrt-Devel] ath79: use caldata patching for Archer C58/C59 | expand

Commit Message

David Bauer Dec. 30, 2018, 9:28 p.m. UTC
With this commit the TP-Link Archer C58 and Archer C59 use caldata
patching in order to set the correct 5GHz MAC-address.

Tested on TP-Link Archer C59 v1.

For more details see commit 330965b.

Signed-off-by: David Bauer <mail@david-bauer.net>
---
 .../ath79/base-files/etc/hotplug.d/firmware/11-ath10k-caldata | 1 +
 .../ath79/base-files/etc/hotplug.d/ieee80211/10_fix_wifi_mac  | 4 ----
 2 files changed, 1 insertion(+), 4 deletions(-)
diff mbox series

Patch

diff --git a/target/linux/ath79/base-files/etc/hotplug.d/firmware/11-ath10k-caldata b/target/linux/ath79/base-files/etc/hotplug.d/firmware/11-ath10k-caldata
index b9a987d418..9469602f77 100644
--- a/target/linux/ath79/base-files/etc/hotplug.d/firmware/11-ath10k-caldata
+++ b/target/linux/ath79/base-files/etc/hotplug.d/firmware/11-ath10k-caldata
@@ -152,6 +152,7 @@  case "$FIRMWARE" in
 	tplink,archer-c58-v1|\
 	tplink,archer-c59-v1)
 		ath10kcal_extract "art" 20480 12064
+		ath10kcal_patch_mac_crc $(macaddr_add $(mtd_get_mac_binary mac 8) -1)
 		ln -sf /lib/firmware/ath10k/pre-cal-pci-0000\:00\:00.0.bin \
 			/lib/firmware/ath10k/QCA9888/hw2.0/board.bin
 		;;
diff --git a/target/linux/ath79/base-files/etc/hotplug.d/ieee80211/10_fix_wifi_mac b/target/linux/ath79/base-files/etc/hotplug.d/ieee80211/10_fix_wifi_mac
index bb55b1c11c..14d4f6b9d6 100644
--- a/target/linux/ath79/base-files/etc/hotplug.d/ieee80211/10_fix_wifi_mac
+++ b/target/linux/ath79/base-files/etc/hotplug.d/ieee80211/10_fix_wifi_mac
@@ -24,10 +24,6 @@  case "$board" in
 		[ "$PHYNBR" -eq 1 ] && \
 			echo $(k2t_get_mac "lan_mac") > /sys${DEVPATH}/macaddress
 		;;
-	tplink,archer-c58-v1|\
-	tplink,archer-c59-v1)
-		echo $(macaddr_add $(mtd_get_mac_binary mac 8)  $(($PHYNBR - 1)) ) > /sys${DEVPATH}/macaddress
-		;;
 	*)
 		;;
 esac