From 2dac4755e58544d8269371ee77a81cfe1b26e689 Mon Sep 17 00:00:00 2001 From: zhanghao Date: Wed, 1 Feb 2012 11:35:25 +0800 Subject: [PATCH] pixcir driver: fix a bug touchscreen cannot hold touching --- drivers/input/touchscreen/pixcir_i2c_ts.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/input/touchscreen/pixcir_i2c_ts.c b/drivers/input/touchscreen/pixcir_i2c_ts.c index 57b83fd99f02..db2e66f90c6a 100644 --- a/drivers/input/touchscreen/pixcir_i2c_ts.c +++ b/drivers/input/touchscreen/pixcir_i2c_ts.c @@ -296,7 +296,7 @@ static void pixcir_ts_work_func(struct work_struct *work) while (!tsdata->exiting) { pixcir_ts_poscheck(tsdata); - if (attb_read_val()){ + /*if (attb_read_val()){ DBG("%s: >>>>>touch release\n\n",__FUNCTION__); for (i = 0; i < MAX_SUPPORT_POINT; i++) { point[i].pre_active = point[i].active; @@ -309,7 +309,7 @@ static void pixcir_ts_work_func(struct work_struct *work) input_sync(tsdata->input); enable_irq(tsdata->client->irq); break; - } + }*/ msleep(1); } -- 2.34.1