From: Chen Ni Date: Wed, 10 Sep 2025 09:19:12 +0000 (+0800) Subject: md/md-llbitmap: Remove unneeded semicolon X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=46caa40534fcab1b341455b156c2bcf3674a6bdc;p=thirdparty%2Flinux.git md/md-llbitmap: Remove unneeded semicolon Remove unnecessary semicolons reported by Coccinelle/coccicheck and the semantic patch at scripts/coccinelle/misc/semicolon.cocci. Link: https://lore.kernel.org/linux-raid/20250910091912.25624-1-nichen@iscas.ac.cn Signed-off-by: Chen Ni Signed-off-by: Yu Kuai --- diff --git a/drivers/md/md-llbitmap.c b/drivers/md/md-llbitmap.c index 1eb434306162a..9c1ade19b7741 100644 --- a/drivers/md/md-llbitmap.c +++ b/drivers/md/md-llbitmap.c @@ -378,7 +378,7 @@ static void llbitmap_infect_dirty_bits(struct llbitmap *llbitmap, case BitClean: pctl->state[pos] = BitDirty; break; - }; + } } }