diff mbox series

dm vdo: remove unneeded semicolon

Message ID 5afbc291bbdf92cc7cd99d58fd35be264676a1ab.1709584943.git.msakai@redhat.com (mailing list archive)
State Accepted, archived
Delegated to: Mike Snitzer
Headers show
Series dm vdo: remove unneeded semicolon | expand

Commit Message

Matthew Sakai March 4, 2024, 8:45 p.m. UTC
From: Yang Li <yang.lee@linux.alibaba.com>

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 <yang.lee@linux.alibaba.com>
Signed-off-by: Matthew Sakai <msakai@redhat.com>
---
 drivers/md/dm-vdo/block-map.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

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);
-	};
+	}
 }
 
 /**