From 61baf7496593c9346a1fbffa988b4214087ea8a8 Mon Sep 17 00:00:00 2001 From: Kamalesh Babulal Date: Wed, 30 Aug 2023 11:30:31 +0530 Subject: [PATCH] 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 --- .checkpatch.conf | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 -- 2.47.2