From ae196882a7d90fdc119a79cbe59c9450b4e8e4eb Mon Sep 17 00:00:00 2001 From: Ping Cheng Date: Tue, 2 Jul 2024 19:31:13 -0700 Subject: [PATCH] Allow checkpatch to ignore file path changes checkpatch throw a warning when it detects a file changed its path. That's a kernel upstream concern. This project doesn't follow that guideline. Ignore it. Signed-off-by: Ping Cheng --- .checkpatch.conf | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .checkpatch.conf diff --git a/.checkpatch.conf b/.checkpatch.conf new file mode 100644 index 00000000..737d2176 --- /dev/null +++ b/.checkpatch.conf @@ -0,0 +1,3 @@ +# Our pathes are not from upstream. Ignore them + +--ignore FILE_PATH_CHANGES