The patch titled Subject: checkpatch: exclude asm volatile from complex macro check has been added to the -mm tree. Its filename is checkpatch-exclude-asm-volatile-from-complex-macro-check.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/checkpatch-exclude-asm-volatile-from-complex-macro-check.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/checkpatch-exclude-asm-volatile-from-complex-macro-check.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Joe Perches <joe@xxxxxxxxxxx> Subject: checkpatch: exclude asm volatile from complex macro check asm volatile and all its variants like __asm__ __volatile__ ("<foo>") are reported as errors with "Macros with with complex values should be enclosed in parentheses". Make an exception for these asm volatile macro definitions by converting the "asm volatile" to "asm_volatile" so it appears as a single function call and the error isn't reported. Signed-off-by: Joe Perches <joe@xxxxxxxxxxx> Reported-by: Jeff Merkey <linux.mdb@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- scripts/checkpatch.pl | 3 +++ 1 file changed, 3 insertions(+) diff -puN scripts/checkpatch.pl~checkpatch-exclude-asm-volatile-from-complex-macro-check scripts/checkpatch.pl --- a/scripts/checkpatch.pl~checkpatch-exclude-asm-volatile-from-complex-macro-check +++ a/scripts/checkpatch.pl @@ -4563,6 +4563,9 @@ sub process { { } + # Make asm volatile uses seem like a generic function + $dstat =~ s/\b_*asm_*\s+_*volatile_*\b/asm_volatile/g; + my $exceptions = qr{ $Declare| module_param_named| _ Patches currently in -mm which might be from joe@xxxxxxxxxxx are checkpatch-exclude-asm-volatile-from-complex-macro-check.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html