The patch titled Subject: checkpatch: exclude asm volatile from complex macro check has been removed from the -mm tree. Its filename was checkpatch-exclude-asm-volatile-from-complex-macro-check.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ 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 @@ -4560,6 +4560,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 mm-convert-pr_warning-to-pr_warn.patch mm-coalesce-split-strings.patch mm-convert-printkkern_level-to-pr_level.patch mm-percpu-use-pr_fmt-to-prefix-output.patch kernel-convert-pr_warning-to-pr_warn.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