[PATCH v2] floppy: remove duplicated code in redo_fd_request()

From: Yufeng Wang
Date: Mon Mar 18 2024 - 21:42:47 EST


duplicated code in redo_fd_request(),
unlock_fdc() function has the same code "do_floppy = NULL" inside.

Signed-off-by: Yufeng Wang <wangyufeng@xxxxxxxxxx>
Suggested-by: Denis Efremov <efremov@xxxxxxxxx>
---
v2: The commit title is too long, update a new short commit title.
---
drivers/block/floppy.c | 1 -
1 file changed, 1 deletion(-)

diff --git a/drivers/block/floppy.c b/drivers/block/floppy.c
index 1b399ec8c07d..25c9d85667f1 100644
--- a/drivers/block/floppy.c
+++ b/drivers/block/floppy.c
@@ -2787,7 +2787,6 @@ static void redo_fd_request(void)
pending = set_next_request();
spin_unlock_irq(&floppy_lock);
if (!pending) {
- do_floppy = NULL;
unlock_fdc();
return;
}
--
2.34.1