scripts: checkpatch: allow "case" macros
authorStanislaw Gruszka <stf_xl@wp.pl>
Thu, 27 Oct 2022 13:43:34 +0000 (15:43 +0200)
committerAndrew Morton <akpm@linux-foundation.org>
Fri, 18 Nov 2022 21:55:08 +0000 (13:55 -0800)
commitdc3f4dee81cd85b039d07b8d75cfbae4668a15d2
tree362527033873bef3d20571dafdf690904d7d33d8
parent5cc81d5c81af0dee54da9a67a3ebe4be076a13db
scripts: checkpatch: allow "case" macros

Do not report errors like below:

./scripts/checkpatch.pl -f drivers/net/wireless/ath/ath10k/wmi.h

ERROR: Macros with complex values should be enclosed in parentheses
+#define C2S(x) case x: return #x

since many "case ..." macros are already used by some in-kernel drivers.

Link: https://lkml.kernel.org/r/20221027134334.164301-1-stf_xl@wp.pl
Signed-off-by: Stanislaw Gruszka <stf_xl@wp.pl>
Acked-by: Joe Perches <joe@perches.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
scripts/checkpatch.pl