[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20171031114539.22058-1-colin.king@canonical.com>
Date: Tue, 31 Oct 2017 11:45:39 +0000
From: Colin King <colin.king@...onical.com>
To: Matt Porter <mporter@...nel.crashing.org>,
Alexandre Bounine <alexandre.bounine@....com>,
Logan Gunthorpe <logang@...tatee.com>
Cc: kernel-janitors@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH] rapidio: remove reundant pointer md that is assigned but never read
From: Colin Ian King <colin.king@...onical.com>
Pointer md is assigned a value but it is never read, hence it is
redundant and can be removed. Cleans up clang warning:
drivers/rapidio/devices/rio_mport_cdev.c:1071:2: warning: Value stored
to 'md' is never read
Signed-off-by: Colin Ian King <colin.king@...onical.com>
---
drivers/rapidio/devices/rio_mport_cdev.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/drivers/rapidio/devices/rio_mport_cdev.c b/drivers/rapidio/devices/rio_mport_cdev.c
index dc5a33f93689..56496e636a40 100644
--- a/drivers/rapidio/devices/rio_mport_cdev.c
+++ b/drivers/rapidio/devices/rio_mport_cdev.c
@@ -1058,7 +1058,6 @@ static int rio_mport_transfer_ioctl(struct file *filp, void __user *arg)
static int rio_mport_wait_for_async_dma(struct file *filp, void __user *arg)
{
struct mport_cdev_priv *priv;
- struct mport_dev *md;
struct rio_async_tx_wait w_param;
struct mport_dma_req *req;
dma_cookie_t cookie;
@@ -1068,7 +1067,6 @@ static int rio_mport_wait_for_async_dma(struct file *filp, void __user *arg)
int ret;
priv = (struct mport_cdev_priv *)filp->private_data;
- md = priv->md;
if (unlikely(copy_from_user(&w_param, arg, sizeof(w_param))))
return -EFAULT;
--
2.14.1
Powered by blists - more mailing lists