The patch titled Subject: checkpatch: fix stringification macro defect has been removed from the -mm tree. Its filename was checkpatch-fix-stringification-macro-defect.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Joe Perches <joe@xxxxxxxxxxx> Subject: checkpatch: fix stringification macro defect Fix checkpatch misreporting defect with stringification macros ERROR: Macros with complex values should be enclosed in parenthesis #27: FILE: arch/arm/include/asm/kgdb.h:41: +#define ___to_string(X) #X Signed-off-by: Joe Perches <joe@xxxxxxxxxxx> Reported-by: Vincent Stehlé <v-stehle@xxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- scripts/checkpatch.pl | 1 + 1 file changed, 1 insertion(+) diff -puN scripts/checkpatch.pl~checkpatch-fix-stringification-macro-defect scripts/checkpatch.pl --- a/scripts/checkpatch.pl~checkpatch-fix-stringification-macro-defect +++ a/scripts/checkpatch.pl @@ -3016,6 +3016,7 @@ sub process { $dstat !~ /^'X'$/ && # character constants $dstat !~ /$exceptions/ && $dstat !~ /^\.$Ident\s*=/ && # .foo = + $dstat !~ /^(?:\#\s*$Ident|\#\s*$Constant)\s*$/ && # stringification #foo $dstat !~ /^do\s*$Constant\s*while\s*$Constant;?$/ && # do {...} while (...); // do {...} while (...) $dstat !~ /^for\s*$Constant$/ && # for (...) $dstat !~ /^for\s*$Constant\s+(?:$Ident|-?$Constant)$/ && # for (...) bar() _ Patches currently in -mm which might be from joe@xxxxxxxxxxx are linux-next.patch get_maintainer-use-filename-only-regex-match-for-tegra.patch get_maintainer-use-filename-only-regex-match-for-tegra-fix.patch checkpatch-add-check-for-reuse-of-krealloc-arg.patch checkpatch-prefer-seq_puts-to-seq_printf.patch checkpatch-complain-about-executable-files.patch checkpatch-warn-on-space-before-semicolon.patch checkpatch-only-warn-for-empty-lines-before-closing-braces-by-themselves.patch hfs-hfsplus-convert-dprint-to-hfs_dbg.patch hfs-hfsplus-convert-printks-to-pr_level.patch kexec-fix-wrong-types-of-some-local-variables.patch kexec-use-min_t-to-simplify-logic.patch kexec-use-min_t-to-simplify-logic-fix.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