From 3cb56c5a2e6265a1da4e4ac542c48cfacb0226b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20K=C4=85dzio=C5=82ka?= Date: Tue, 20 Aug 2019 14:43:31 +0200 Subject: [PATCH] checkpatch.conf: Don't complain when bools are used in struct In RGBDS's codebase, boolean struct members aren't a problem. See include/asm/main.h, include/gfx/main.h for examples. --- .checkpatch.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.checkpatch.conf b/.checkpatch.conf index 1ffa80de..d7a38c4a 100644 --- a/.checkpatch.conf +++ b/.checkpatch.conf @@ -67,3 +67,6 @@ # Don't complain when files are modified in 'include/asm' --ignore MODIFIED_INCLUDE_ASM + +# Don't complain when bools are used in structs +--ignore BOOL_MEMBER