From f4901c23602cb5b5d86202f3f7f4a62323fdbc82 Mon Sep 17 00:00:00 2001 From: Jeff Johnson Date: Fri, 9 Jan 2026 10:07:20 -0800 Subject: [PATCH] ath12k-check: ignore ath12k_ce_free_pipes() long lines Kernel commit bb97131fbf9b ("wifi: ath12k: fix dma_free_coherent() pointer") incresed the length of three lines in ath12k_ce_free_pipes() beyond the current limit. The code is fine, so ignore the warning. Signed-off-by: Jeff Johnson --- tools/scripts/ath12k/ath12k-check | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/scripts/ath12k/ath12k-check b/tools/scripts/ath12k/ath12k-check index 4088459..7fb4df0 100755 --- a/tools/scripts/ath12k/ath12k-check +++ b/tools/scripts/ath12k/ath12k-check @@ -54,6 +54,7 @@ CHECKPATCH_OPTS = ['--strict', '-q', '--terse', '--no-summary', '--max-line-length=90', '--show-types'] checkpatch_filter = [ + ('ath12k_ce_free_pipes', 'LONG_LINE'), ('ath12k_wifi7_dp_mon_hal_rx_parse_eht_non_mumimo_user', 'LONG_LINE'), ('ath12k_wifi7_dp_mon_hal_rx_parse_eht_sig_ndp', 'LONG_LINE'), ('ath12k_wifi7_dp_mon_hal_rx_parse_eht_sig_non_ofdma', 'LONG_LINE'),