From 3be8b23f4f36a919f2da86669596ffb892cf4fd2 Mon Sep 17 00:00:00 2001 From: Hugo Villeneuve Date: Mon, 23 Mar 2026 14:00:13 -0400 Subject: [PATCH] hvsp: change checkpatch options to simplify output reporting Signed-off-by: Hugo Villeneuve --- scripts/kernel-send-patches.sh | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/scripts/kernel-send-patches.sh b/scripts/kernel-send-patches.sh index b4feeca..a65322d 100755 --- a/scripts/kernel-send-patches.sh +++ b/scripts/kernel-send-patches.sh @@ -58,7 +58,14 @@ resend="no" GIT_FORMAT_PATCH_SUBJECT="PATCH" GIT_FORMAT_PATCH_OPTS="--histogram" skip_compile=0 -CHECKPATCH_OPS="--strict" + +# Checkpatch options: +# --no-summary suppress the per-file summary +# --mailback only produce a report in case of warnings/errors +# --showfile emit diffed file position, not input file position +# --strict enable more subjective tests +# --terse one line per report +CHECKPATCH_OPS="--quiet --strict --terse --no-summary --mailback --showfile" print_usage() { -- 2.47.3