From bc2150af989df68fd862e338006810c5f6be4715 Mon Sep 17 00:00:00 2001 From: Yang Li Date: Fri, 1 Mar 2024 16:54:40 +0800 Subject: [PATCH] dm vdo: remove unneeded semicolon Remove the unnecessary semicolon at the end of the for statement which cleans up the code and ensures consistency with the rest of the kernel coding style. Signed-off-by: Yang Li Signed-off-by: Matthew Sakai --- drivers/md/dm-vdo/block-map.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/md/dm-vdo/block-map.c b/drivers/md/dm-vdo/block-map.c index e79156dc7cc9..a0a7c1bd634e 100644 --- a/drivers/md/dm-vdo/block-map.c +++ b/drivers/md/dm-vdo/block-map.c @@ -2705,7 +2705,7 @@ void vdo_traverse_forest(struct block_map *map, vdo_entry_callback_fn callback, cursor->waiter.callback = launch_cursor; acquire_vio_from_pool(cursors->pool, &cursor->waiter); - }; + } } /**