[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20180702074234.10435-1-colin.king@canonical.com>
Date: Mon, 2 Jul 2018 08:42:34 +0100
From: Colin King <colin.king@...onical.com>
To: Jiri Kosina <jikos@...nel.org>, Jens Axboe <axboe@...nel.dk>,
linux-block@...r.kernel.org
Cc: kernel-janitors@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH] block/floppy: remove redundant variable dflags
From: Colin Ian King <colin.king@...onical.com>
Variable dflags is being assigned but is never used hence it is redundant
and can be removed.
Cleans up clang warning:
warning: variable 'dflags' set but not used [-Wunused-but-set-variable]
Signed-off-by: Colin Ian King <colin.king@...onical.com>
---
drivers/block/floppy.c | 3 ---
1 file changed, 3 deletions(-)
diff --git a/drivers/block/floppy.c b/drivers/block/floppy.c
index 8871b5044d9e..48f622728ce6 100644
--- a/drivers/block/floppy.c
+++ b/drivers/block/floppy.c
@@ -1461,7 +1461,6 @@ static void setup_rw_floppy(void)
int i;
int r;
int flags;
- int dflags;
unsigned long ready_date;
void (*function)(void);
@@ -1485,8 +1484,6 @@ static void setup_rw_floppy(void)
if (fd_wait_for_completion(ready_date, function))
return;
}
- dflags = DRS->flags;
-
if ((flags & FD_RAW_READ) || (flags & FD_RAW_WRITE))
setup_DMA();
--
2.17.1
Powered by blists - more mailing lists