summaryrefslogtreecommitdiffstats
path: root/drivers/input
diff options
context:
space:
mode:
authorDmitry Torokhov2013-11-19 21:51:26 +0100
committerDmitry Torokhov2013-11-26 03:27:54 +0100
commitf261d46551275abc9e92b24773b15fbb82153b63 (patch)
tree6e3c94963acd8dba7169780b9817eaa83df031ba /drivers/input
parentInput: tsc2007 - add device tree support. (diff)
downloadkernel-qcow2-linux-f261d46551275abc9e92b24773b15fbb82153b63.tar.gz
kernel-qcow2-linux-f261d46551275abc9e92b24773b15fbb82153b63.tar.xz
kernel-qcow2-linux-f261d46551275abc9e92b24773b15fbb82153b63.zip
Input: tsc2007 - remove unused poll_delay from platform data
The driver does not use poll_delay parameter, so let's remove it. Tested-by: Denis Carikli <denis@eukrea.com> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input')
-rw-r--r--drivers/input/touchscreen/tsc2007.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/input/touchscreen/tsc2007.c b/drivers/input/touchscreen/tsc2007.c
index 88b150a0b8ee..03fbdf1e8613 100644
--- a/drivers/input/touchscreen/tsc2007.c
+++ b/drivers/input/touchscreen/tsc2007.c
@@ -75,7 +75,6 @@ struct tsc2007 {
u16 model;
u16 x_plate_ohms;
u16 max_rt;
- unsigned long poll_delay;
unsigned long poll_period;
int fuzzx;
int fuzzy;
@@ -351,7 +350,6 @@ static int tsc2007_probe_pdev(struct i2c_client *client, struct tsc2007 *ts,
ts->model = pdata->model;
ts->x_plate_ohms = pdata->x_plate_ohms;
ts->max_rt = pdata->max_rt ? : MAX_12BIT;
- ts->poll_delay = pdata->poll_delay ? : 1;
ts->poll_period = pdata->poll_period ? : 1;
ts->get_pendown_state = pdata->get_pendown_state;
ts->clear_penirq = pdata->clear_penirq;