From: Jens Axboe Date: Thu, 8 Nov 2018 04:17:57 +0000 (-0700) Subject: sunvdc: fix compiler warning X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=dbef5257737b989d4785b62939f1e9cba3948689;p=openwrt%2Fstaging%2Fblogic.git sunvdc: fix compiler warning Stephen reports: After merging the block tree, today's linux-next build (sparc64 defconfig) produced this warning: /home/sfr/next/next/drivers/block/sunvdc.c: In function 'init_queue': /home/sfr/next/next/drivers/block/sunvdc.c:788:6: warning: unused variable 'ret' [-Wunused-variable] int ret; ^~~ Kill the unused variable. Fixes: fa182a1fa97d ("sunvdc: convert to blk-mq") Reported-by: Stephen Rothwell Signed-off-by: Jens Axboe --- diff --git a/drivers/block/sunvdc.c b/drivers/block/sunvdc.c index 95cb4ea8e402..175a64619602 100644 --- a/drivers/block/sunvdc.c +++ b/drivers/block/sunvdc.c @@ -785,7 +785,6 @@ static void cleanup_queue(struct request_queue *q) static struct request_queue *init_queue(struct vdc_port *port) { struct request_queue *q; - int ret; q = blk_mq_init_sq_queue(&port->tag_set, &vdc_mq_ops, VDC_TX_RING_SIZE, BLK_MQ_F_SHOULD_MERGE);