From 8590f6a469d38108432d0695600353cc1354cc9a Mon Sep 17 00:00:00 2001 From: Lauren Murphy Date: Wed, 3 Apr 2024 15:57:21 -0700 Subject: [PATCH] checkpatch: ignore EXPORT_SYMBOL checkpatch isn't smart enough to detect a function / variable has been declared e.g. with K_SEM_DEFINE and will incorrectly flag such cases. Signed-off-by: Lauren Murphy --- .checkpatch.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/.checkpatch.conf b/.checkpatch.conf index b68d702e453..accee08b149 100644 --- a/.checkpatch.conf +++ b/.checkpatch.conf @@ -29,3 +29,4 @@ --ignore MULTISTATEMENT_MACRO_USE_DO_WHILE --ignore ENOSYS --ignore IS_ENABLED_CONFIG +--ignore EXPORT_SYMBOL