Linux kernel coding style say braces are not necessary if a block has only one statement. So remove it. Signed-off-by: Jiale Yang <295107659@xxxxxx> --- mm/page_alloc.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/mm/page_alloc.c b/mm/page_alloc.c index a8cd54c02..4915b5d31 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c @@ -6877,9 +6877,8 @@ bool put_page_back_buddy(struct page *page) ClearPageHWPoisonTakenOff(page); __free_one_page(page, pfn, zone, 0, migratetype, FPI_NONE); - if (TestClearPageHWPoison(page)) { + if (TestClearPageHWPoison(page)) ret = true; - } } spin_unlock_irqrestore(&zone->lock, flags); -- 2.47.0