linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] input: touchscreen: Remove unneeded variable: "rc"
@ 2021-02-25  4:29 dingsenjie
  0 siblings, 0 replies; only message in thread
From: dingsenjie @ 2021-02-25  4:29 UTC (permalink / raw)
  To: dmitry.torokhov, fery; +Cc: linux-input, linux-kernel, dingsenjie

From: dingsenjie <dingsenjie@yulong.com>

Remove unneeded "rc" variable in the cyttsp4_core.c.

Signed-off-by: dingsenjie <dingsenjie@yulong.com>
---
 drivers/input/touchscreen/cyttsp4_core.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/drivers/input/touchscreen/cyttsp4_core.c b/drivers/input/touchscreen/cyttsp4_core.c
index dccbcb9..93d3c77 100644
--- a/drivers/input/touchscreen/cyttsp4_core.c
+++ b/drivers/input/touchscreen/cyttsp4_core.c
@@ -544,7 +544,6 @@ static int cyttsp4_si_get_btn_data(struct cyttsp4 *cd)
 	int num_defined_keys;
 	u16 *key_table;
 	void *p;
-	int rc = 0;
 
 	if (si->si_ofs.num_btns) {
 		si->si_ofs.btn_keys_size = si->si_ofs.num_btns *
@@ -581,13 +580,13 @@ static int cyttsp4_si_get_btn_data(struct cyttsp4 *cd)
 			si->btn[btn].enabled = true;
 		}
 
-		return rc;
+		return 0;
 	}
 
 	si->si_ofs.btn_keys_size = 0;
 	kfree(si->btn);
 	si->btn = NULL;
-	return rc;
+	return 0;
 }
 
 static int cyttsp4_si_get_op_data_ptrs(struct cyttsp4 *cd)
-- 
1.9.1


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2021-02-25  4:33 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-25  4:29 [PATCH] input: touchscreen: Remove unneeded variable: "rc" dingsenjie

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).