From 48b5d08a483a29c4e654a08580fffe12559e41b7 Mon Sep 17 00:00:00 2001 From: Adrian Schmutzler Date: Mon, 14 Oct 2019 14:02:40 +0200 Subject: treewide: use a single ath10k MAC patching function with checksum While all ath10k eeproms have a checksum field, so far two functions for patching ath10k MAC address have been present (and been used). This merges code to provide a single function ath10k_patch_mac in caldata.sh, having its name in accordance with ath9k functions. By doing so, correct MAC patching for current and future ath10k devices should be ensured. This patch adds checksum adjustments for several targets on ath79 and lantiq. Signed-off-by: Adrian Schmutzler --- package/base-files/files/lib/functions/caldata.sh | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'package/base-files/files/lib/functions/caldata.sh') diff --git a/package/base-files/files/lib/functions/caldata.sh b/package/base-files/files/lib/functions/caldata.sh index 004bcfa990..1ff69ce1ae 100644 --- a/package/base-files/files/lib/functions/caldata.sh +++ b/package/base-files/files/lib/functions/caldata.sh @@ -121,13 +121,7 @@ ath9k_patch_mac_crc() { caldata_patch_mac "$mac" "$mac_offset" "$chksum_offset" } -ath10kcal_patch_mac() { - local mac=$1 - - caldata_patch_mac "$mac" 0x6 -} - -ath10kcal_patch_mac_crc() { +ath10k_patch_mac() { local mac=$1 caldata_patch_mac "$mac" 0x6 0x2 -- cgit v1.2.3