From e81a60303efe30f10b38f0e12bacb46bac50e985 Mon Sep 17 00:00:00 2001 From: Jeff Johnson Date: Tue, 21 Oct 2025 15:48:05 -0700 Subject: [PATCH] ath11k-check: update checkpatch commit to 99b70ece33d87500ef7bee8e32cb99772c45ce14 Update to the latest checkpatch. With this version there is a new warning that is tricky to fix cleanly, so add that warning to the checkpatch_filter list. Signed-off-by: Jeff Johnson --- tools/scripts/ath11k/ath11k-check | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tools/scripts/ath11k/ath11k-check b/tools/scripts/ath11k/ath11k-check index 954a890..522da47 100755 --- a/tools/scripts/ath11k/ath11k-check +++ b/tools/scripts/ath11k/ath11k-check @@ -31,8 +31,8 @@ import string import hashlib import shutil -CHECKPATCH_COMMIT = '296455ade1fdcf5f8f8c033201633b60946c589a' -CHECKPATCH_MD5SUM = '77c655474ed7622c0077caf2f0d7c440' +CHECKPATCH_COMMIT = '99b70ece33d87500ef7bee8e32cb99772c45ce14' +CHECKPATCH_MD5SUM = 'b3c97930952745672f3408dabc244843' GIT_URL = 'https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/plain/scripts/checkpatch.pl?id=%s' @@ -90,6 +90,7 @@ CHECKPATCH_OPTS = ['--strict', '-q', '--terse', '--no-summary', checkpatch_filter = [ ('ath11k_read_simulate_fw_crash', 'LONG_LINE'), ('qmi_wlanfw_respond_mem_req_msg_v01', 'LONG_LINE'), + ('DEFINE_EVENT', 'MACRO_ARG_UNUSED'), ] sparse_filter = [r'warning: dubious: x & !y']