Commit 6dc8746d authored by YueHaibing's avatar YueHaibing Committed by Jens Axboe

floppy: remove set but not used variable 'q'

Fixes gcc '-Wunused-but-set-variable' warning:

drivers/block/floppy.c: In function 'request_done':
drivers/block/floppy.c:2233:24: warning:
 variable 'q' set but not used [-Wunused-but-set-variable]

It's never used and can be removed.
Acked-by: default avatarJiri Kosina <jkosina@suse.cz>
Signed-off-by: default avatarYueHaibing <yuehaibing@huawei.com>
Signed-off-by: default avatarJens Axboe <axboe@kernel.dk>
parent bf7c7a04
...@@ -2230,7 +2230,6 @@ static void floppy_end_request(struct request *req, blk_status_t error) ...@@ -2230,7 +2230,6 @@ static void floppy_end_request(struct request *req, blk_status_t error)
static void request_done(int uptodate) static void request_done(int uptodate)
{ {
struct request *req = current_req; struct request *req = current_req;
struct request_queue *q;
int block; int block;
char msg[sizeof("request done ") + sizeof(int) * 3]; char msg[sizeof("request done ") + sizeof(int) * 3];
...@@ -2243,8 +2242,6 @@ static void request_done(int uptodate) ...@@ -2243,8 +2242,6 @@ static void request_done(int uptodate)
return; return;
} }
q = req->q;
if (uptodate) { if (uptodate) {
/* maintain values for invalidation on geometry /* maintain values for invalidation on geometry
* change */ * change */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment