From 1dbe39666bf33f0713012dc3c0ecb559a1b5c36a Mon Sep 17 00:00:00 2001 From: Chen Ni Date: Thu, 26 Feb 2026 09:45:28 +0800 Subject: [PATCH] ntfs: Remove unneeded semicolon Remove unnecessary semicolons reported by Coccinelle/coccicheck and the semantic patch at scripts/coccinelle/misc/semicolon.cocci. Signed-off-by: Chen Ni Reviewed-by: Hyunchul Lee Signed-off-by: Namjae Jeon --- fs/ntfs/super.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/ntfs/super.c b/fs/ntfs/super.c index 3f559df4856b8..830dfc5aed2d8 100644 --- a/fs/ntfs/super.c +++ b/fs/ntfs/super.c @@ -1337,7 +1337,7 @@ read_partial_upcase_page: addr, size); kunmap_local(addr); folio_put(folio); - }; + } if (size == PAGE_SIZE) { size = i_size & ~PAGE_MASK; if (size) -- 2.47.3