2010-07-16 02:43:20

by Wan ZongShun

[permalink] [raw]
Subject: [PATCH] touchscreen/nuc900: fix wrong setup_timer parameter

Hi Dmitry,

This patch fixes wrong setup_timer parameter,when pen up event coming
all codes quoting the w90p910_ts work failed.

Signed-off-by: Wan ZongShun <[email protected]>
---
drivers/input/touchscreen/w90p910_ts.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/input/touchscreen/w90p910_ts.c b/drivers/input/touchscreen/w90p910_ts.c
index cc18265..7a45d68 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) {
--
1.6.3.3


2010-07-16 07:08:04

by Dmitry Torokhov

[permalink] [raw]
Subject: Re: [PATCH] touchscreen/nuc900: fix wrong setup_timer parameter

On Fri, Jul 16, 2010 at 10:43:02AM +0800, Wan ZongShun wrote:
> Hi Dmitry,
>
> This patch fixes wrong setup_timer parameter,when pen up event coming
> all codes quoting the w90p910_ts work failed.
>

Applied, thanks Wan.

--
Dmitry