ref: 3cb56c5a2e6265a1da4e4ac542c48cfacb0226b5
parent: b8d5dd18240cd12ed3cb5294a8c2c239d13fb145
author: Jakub Kądziołka <kuba@kadziolka.net>
date: Tue Aug 20 10:43:31 EDT 2019
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.
--- 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