From 38a1314a491ee6466c7d816ef43d047f09f41f66 Mon Sep 17 00:00:00 2001 From: mgrzonka <97116389+mgrzonka@users.noreply.github.com> Date: Tue, 16 May 2023 11:04:46 +0200 Subject: [PATCH] Ignore meaningless checkpatch errors (#138) Checkpatch has some checks specific for kernel code submission, that are meaningless for ledmon. We need to ignore them. --- .checkpatch.conf | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.checkpatch.conf b/.checkpatch.conf index 90509eaf..f88d89af 100644 --- a/.checkpatch.conf +++ b/.checkpatch.conf @@ -1,4 +1,10 @@ --no-tree +--show-types --ignore FILE_PATH_CHANGES --ignore GIT_COMMIT_ID ---ignore SPDX_LICENSE_TAG \ No newline at end of file +--ignore SPDX_LICENSE_TAG +--ignore FSF_MAILING_ADDRESS +--ignore PREFER_PACKED +--ignore NEW_TYPEDEFS +--ignore PREFER_PRINTF +--ignore EMAIL_SUBJECT \ No newline at end of file