aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYang Li <[email protected]>2024-06-18 09:07:59 +0800
committerSong Liu <[email protected]>2024-07-04 06:14:03 +0000
commitae720670b9fc5ef3588efd5b95e6a0f59a36dec0 (patch)
treedbeb3848f65c71edbec24abf7ee016cc758a1fe2
parent2314c2e3a70521f055dd011245dccf6fd97c7ee0 (diff)
md: Remove unneeded semicolon
./drivers/md/md.c:630:21-22: Unneeded semicolon Reported-by: Abaci Robot <[email protected]> Closes: https://bugzilla.openanolis.cn/show_bug.cgi?id=9344 Signed-off-by: Yang Li <[email protected]> Signed-off-by: Song Liu <[email protected]> Link: https://lore.kernel.org/r/[email protected]
-rw-r--r--drivers/md/md.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/md.c b/drivers/md/md.c
index 0ff26a547f1a..149be072546a 100644
--- a/drivers/md/md.c
+++ b/drivers/md/md.c
@@ -627,7 +627,7 @@ static void md_submit_flush_data(struct work_struct *ws)
* always is 0, make_request() will not be called here.
*/
if (WARN_ON_ONCE(!mddev->pers->make_request(mddev, bio)))
- bio_io_error(bio);;
+ bio_io_error(bio);
}
/* The pair is percpu_ref_get() from md_flush_request() */