[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <903a941e-a562-0456-da6e-9a801254c853@users.sourceforge.net>
Date: Thu, 25 Jan 2018 19:54:47 +0100
From: SF Markus Elfring <elfring@...rs.sourceforge.net>
To: linux-input@...r.kernel.org,
Arvind Yadav <arvind.yadav.cs@...il.com>,
Dmitry Torokhov <dmitry.torokhov@...il.com>,
Joe Perches <joe@...ches.com>, Johan Hovold <johan@...nel.org>,
Zhen Lei <thunder.leizhen@...wei.com>
Cc: LKML <linux-kernel@...r.kernel.org>,
kernel-janitors@...r.kernel.org
Subject: [PATCH 3/3] Input: ims-pcu: Delete an unnecessary variable assignment
in ims_pcu_setup_gamepad()
From: Markus Elfring <elfring@...rs.sourceforge.net>
Date: Thu, 25 Jan 2018 19:37:34 +0100
An error code was assigned to a local variable in an if branch.
This value was not read again before it was used by a return statement
as a constant value at the end of this function.
Thus remove such an unneeded assignment.
Signed-off-by: Markus Elfring <elfring@...rs.sourceforge.net>
---
drivers/input/misc/ims-pcu.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/input/misc/ims-pcu.c b/drivers/input/misc/ims-pcu.c
index d7778b273151..aa1bb284c714 100644
--- a/drivers/input/misc/ims-pcu.c
+++ b/drivers/input/misc/ims-pcu.c
@@ -295,7 +295,6 @@ static int ims_pcu_setup_gamepad(struct ims_pcu *pcu)
if (!gamepad || !input) {
dev_err(pcu->dev,
"Not enough memory for gamepad device\n");
- error = -ENOMEM;
goto err_free_mem;
}
--
2.16.1
Powered by blists - more mailing lists