From c9f7b875e70d9f9ba08c6bb2e9d0c6f0f4e207fb Mon Sep 17 00:00:00 2001 From: pcwang Date: Wed, 5 Mar 2025 12:28:05 +0000 Subject: [PATCH] Avoid unnecessary spaces created by clang-format Add a statement so that clang-format follows the linux kernel coding style, preventing spaces between a macro's name and the parenthesis. Change-Id: I97bf12cd270c6aef03eca359e29636bb5fb3d616 --- .clang-format | 1 + 1 file changed, 1 insertion(+) diff --git a/.clang-format b/.clang-format index 30c5a3f49..a4b071deb 100644 --- a/.clang-format +++ b/.clang-format @@ -24,3 +24,4 @@ ForEachMacros: - hlist_for_each_entry - rb_list_foreach - rb_list_foreach_safe +SpaceBeforeParens: ControlStatementsExceptForEachMacros