The patch titled Subject: checkpatch-add-check-for-use-of-sizeof-without-parenthesis-v2 has been removed from the -mm tree. Its filename was checkpatch-add-check-for-use-of-sizeof-without-parenthesis-v2.patch This patch was dropped because it was folded into checkpatch-add-check-for-use-of-sizeof-without-parenthesis.patch ------------------------------------------------------ From: Joe Perches <joe@xxxxxxxxxxx> Subject: checkpatch-add-check-for-use-of-sizeof-without-parenthesis-v2 Add check that works for sizeof *foo as well as sizeof foo Signed-off-by: Joe Perches <joe@xxxxxxxxxxx> Cc: Andy Whitcroft <apw@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- scripts/checkpatch.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN scripts/checkpatch.pl~checkpatch-add-check-for-use-of-sizeof-without-parenthesis-v2 scripts/checkpatch.pl --- a/scripts/checkpatch.pl~checkpatch-add-check-for-use-of-sizeof-without-parenthesis-v2 +++ a/scripts/checkpatch.pl @@ -3266,7 +3266,7 @@ sub process { } # check for sizeof without parenthesis - if ($line =~ /\bsizeof\s+($Lval)/) { + if ($line =~ /\bsizeof\s+((?:\*\s*|)$Lval|$Type(?:\s+$Lval|))/) { WARN("SIZEOF_PARENTHESIS", "sizeof $1 should be sizeof($1)\n" . $herecurr); } _ Patches currently in -mm which might be from joe@xxxxxxxxxxx are origin.patch printk-add-generic-functions-to-find-kern_level-headers.patch printk-add-kern_levelsh-to-make-kern_level-available-for-asm-use.patch arch-remove-direct-definitions-of-kern_level-uses.patch btrfs-use-printk_get_level-and-printk_skip_level-add-__printf-fix-fallout.patch sound-use-printk_get_level-and-printk_skip_level.patch printk-convert-the-format-for-kern_level-to-a-2-byte-pattern.patch printk-only-look-for-prefix-levels-in-kernel-messages.patch printk-remove-the-now-unnecessary-c-annotation-for-kern_cont.patch vsprintf-add-%pmr-for-bluetooth-mac-address.patch vsprintf-add-support-of-%ph.patch checkpatch-update-alignment-check.patch checkpatch-test-for-non-standard-signatures.patch checkpatch-check-usleep_range-arguments.patch checkpatch-add-check-for-use-of-sizeof-without-parenthesis.patch checkpatch-add-checks-for-do-while-0-macro-misuses.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