The patch titled Subject: mm: Fix checkpatch warning, extraneous braces has been removed from the -mm tree. Its filename was mm-fix-checkpatch-warning-extraneous-braces.patch This patch was dropped because it was folded into mm-fix-checkpatch-warnings-whitespace.patch ------------------------------------------------------ From: Tobin C Harding <me@xxxxxxxx> Subject: mm: Fix checkpatch warning, extraneous braces Patch fixes checkpatch warning on use of braces around a single statement. Link: http://lkml.kernel.org/r/1485992240-10986-5-git-send-email-me@xxxxxxxx Signed-off-by: Tobin C Harding <me@xxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/memory.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff -puN mm/memory.c~mm-fix-checkpatch-warning-extraneous-braces mm/memory.c --- a/mm/memory.c~mm-fix-checkpatch-warning-extraneous-braces +++ a/mm/memory.c @@ -1140,9 +1140,8 @@ again: arch_enter_lazy_mmu_mode(); do { pte_t ptent = *pte; - if (pte_none(ptent)) { + if (pte_none(ptent)) continue; - } if (pte_present(ptent)) { struct page *page; _ Patches currently in -mm which might be from me@xxxxxxxx are mm-fix-sparse-use-plain-integer-as-null-pointer.patch mm-fix-checkpatch-warnings-whitespace.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