[PATCH] powerpc: iSeries: remove unused variable in viodasd.c
Johann Felix Soden
johfel at gmx.de
Mon Sep 22 05:02:36 EST 2008
From: Johann Felix Soden <johfel at users.sourceforge.net>
The variable statindex in send_request is never read, so remove it.
Signed-off-by: Johann Felix Soden <johfel at users.sourceforge.net>
CC: Stephen Rothwell <sfr at canb.auug.org.au>
---
drivers/block/viodasd.c | 3 ---
1 files changed, 0 insertions(+), 3 deletions(-)
diff --git a/drivers/block/viodasd.c b/drivers/block/viodasd.c
index f1c8feb..1730d29 100644
--- a/drivers/block/viodasd.c
+++ b/drivers/block/viodasd.c
@@ -249,7 +249,6 @@ static int send_request(struct request *req)
struct HvLpEvent *hev;
struct scatterlist sg[VIOMAXBLOCKDMA];
int sgindex;
- int statindex;
struct viodasd_device *d;
unsigned long flags;
@@ -258,11 +257,9 @@ static int send_request(struct request *req)
if (rq_data_dir(req) == READ) {
direction = DMA_FROM_DEVICE;
viocmd = viomajorsubtype_blockio | vioblockread;
- statindex = 0;
} else {
direction = DMA_TO_DEVICE;
viocmd = viomajorsubtype_blockio | vioblockwrite;
- statindex = 1;
}
d = req->rq_disk->private_data;
--
1.5.6.5
More information about the Linuxppc-dev
mailing list