aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/input/touchscreen/w90p910_ts.c
diff options
context:
space:
mode:
authorWan ZongShun <mcuos.com@gmail.com>2010-07-15 23:28:57 -0700
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2010-07-15 23:51:03 -0700
commit5b39187fad6faefae5ce1a1e997651d4e382b135 (patch)
tree0a6095cfc219b932afead2bb4597aaf811e25367 /drivers/input/touchscreen/w90p910_ts.c
parentInput: synaptics - fix wrong dimensions check (diff)
downloadlinux-dev-5b39187fad6faefae5ce1a1e997651d4e382b135.tar.xz
linux-dev-5b39187fad6faefae5ce1a1e997651d4e382b135.zip
Input: w90p910_ts - fix call to setup_timer()
No need to take address, w90p910_ts is already a pointer. Signed-off-by: Wan ZongShun <mcuos.com@gmail.com> Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input/touchscreen/w90p910_ts.c')
-rw-r--r--drivers/input/touchscreen/w90p910_ts.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/touchscreen/w90p910_ts.c b/drivers/input/touchscreen/w90p910_ts.c
index cc18265be1a8..7a45d68c3516 100644
--- a/drivers/input/touchscreen/w90p910_ts.c
+++ b/drivers/input/touchscreen/w90p910_ts.c
@@ -233,7 +233,7 @@ static int __devinit w90x900ts_probe(struct platform_device *pdev)
w90p910_ts->state = TS_IDLE;
spin_lock_init(&w90p910_ts->lock);
setup_timer(&w90p910_ts->timer, w90p910_check_pen_up,
- (unsigned long)&w90p910_ts);
+ (unsigned long)w90p910_ts);
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
if (!res) {