|
@@ -277,16 +277,11 @@ static void goodix_process_events(struct goodix_ts_data *ts)
|
|
|
*/
|
|
|
static irqreturn_t goodix_ts_irq_handler(int irq, void *dev_id)
|
|
|
{
|
|
|
- static const u8 end_cmd[] = {
|
|
|
- GOODIX_READ_COOR_ADDR >> 8,
|
|
|
- GOODIX_READ_COOR_ADDR & 0xff,
|
|
|
- 0
|
|
|
- };
|
|
|
struct goodix_ts_data *ts = dev_id;
|
|
|
|
|
|
goodix_process_events(ts);
|
|
|
|
|
|
- if (i2c_master_send(ts->client, end_cmd, sizeof(end_cmd)) < 0)
|
|
|
+ if (goodix_i2c_write_u8(ts->client, GOODIX_READ_COOR_ADDR, 0) < 0)
|
|
|
dev_err(&ts->client->dev, "I2C write end_cmd error\n");
|
|
|
|
|
|
return IRQ_HANDLED;
|