[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1277206862-27146-1-git-send-email-jslaby@suse.cz>
Date: Tue, 22 Jun 2010 13:41:02 +0200
From: Jiri Slaby <jslaby@...e.cz>
To: dmitry.torokhov@...il.com
Cc: linux-kernel@...r.kernel.org, jirislaby@...il.com,
Jiri Slaby <jslaby@...e.cz>,
Todd Fischer <todd.fischer@...gerun.com>,
Samuel Ortiz <sameo@...ux.intel.com>,
linux-input@...r.kernel.org
Subject: [PATCH] INPUT: tps6507x-ts, remove unneeded NULL test
Stanse found that tsc is dereferenced earlier than checked for being
NULL in tps6507x_ts_remove. Remove the test because I see no way, how
tsc can be NULL there.
Signed-off-by: Jiri Slaby <jslaby@...e.cz>
Cc: Dmitry Torokhov <dmitry.torokhov@...il.com>
Cc: Todd Fischer <todd.fischer@...gerun.com>
Cc: Samuel Ortiz <sameo@...ux.intel.com>
Cc: linux-input@...r.kernel.org
---
drivers/input/touchscreen/tps6507x-ts.c | 3 ---
1 files changed, 0 insertions(+), 3 deletions(-)
diff --git a/drivers/input/touchscreen/tps6507x-ts.c b/drivers/input/touchscreen/tps6507x-ts.c
index 5b70a14..a644d18 100644
--- a/drivers/input/touchscreen/tps6507x-ts.c
+++ b/drivers/input/touchscreen/tps6507x-ts.c
@@ -355,9 +355,6 @@ static int __devexit tps6507x_ts_remove(struct platform_device *pdev)
struct tps6507x_ts *tsc = tps6507x_dev->ts;
struct input_dev *input_dev = tsc->input_dev;
- if (!tsc)
- return 0;
-
cancel_delayed_work_sync(&tsc->work);
destroy_workqueue(tsc->wq);
--
1.7.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists