From: Kamalesh Babulal Date: Wed, 30 Aug 2023 06:00:31 +0000 (+0530) Subject: add FILE_PATH_CHANGES to ignore list of patch review X-Git-Tag: v3.2.0~198 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=61baf7496593c9346a1fbffa988b4214087ea8a8;p=thirdparty%2Flibcgroup.git add FILE_PATH_CHANGES to ignore list of patch review Add FILE_PATH_CHANGES to the list of warnings, that is very specific to Linux Kernel, which is triggered when a file is added, moved, or deleted to the source tree. Let's ignore it and this patch also removes an extra new line in the .checkpatch.conf. Signed-off-by: Kamalesh Babulal Signed-off-by: Tom Hromatka --- diff --git a/.checkpatch.conf b/.checkpatch.conf index 765016c6..481e4b1e 100644 --- a/.checkpatch.conf +++ b/.checkpatch.conf @@ -18,7 +18,10 @@ # introducing it and remove it. --ignore NEW_TYPEDEFS - # Ignore Kernel str* function recommendations --ignore STRCPY --ignore STRNCPY + +# Ignore the suggestion to add file changes (add, move, or delete) to the +# MAINTAINERS file +--ignore FILE_PATH_CHANGES