From e6ef1f3434a2f7c26bd9d1bbdba8537ff541ef01 Mon Sep 17 00:00:00 2001 From: Rafael Lee Date: Wed, 16 Nov 2022 02:56:54 +0800 Subject: [PATCH] clang-format: remove space before colon To fit the bitfield check in scripts/checkpatch.pl from: uint8_t : 3; to: uint8_t: 3; Signed-off-by: Rafael Lee --- .clang-format | 1 + 1 file changed, 1 insertion(+) diff --git a/.clang-format b/.clang-format index bdeda209bb2..d68699c2c54 100644 --- a/.clang-format +++ b/.clang-format @@ -25,6 +25,7 @@ AttributeMacros: - __printf_like - __syscall - __subsystem +BitFieldColonSpacing: After BreakBeforeBraces: Linux ColumnLimit: 100 ConstructorInitializerIndentWidth: 8