Home
last modified time | relevance | path

Searched refs:last_x (Results 1 – 2 of 2) sorted by relevance

/linux/drivers/input/touchscreen/
H A Dts4800-ts.c79 u16 last_x = readw(ts->base + X_OFFSET); in ts4800_ts_poll() local
81 bool pendown = last_x & PENDOWN_MASK; in ts4800_ts_poll()
94 last_x = ((~last_x) >> 4) & MAX_12BIT; in ts4800_ts_poll()
97 input_report_abs(input_dev, ABS_X, last_x); in ts4800_ts_poll()
H A Dda9034-ts.c62 int last_x; member
98 touch->last_x = ((_x << 2) & 0x3fc) | (_v & 0x3); in read_tsi()
118 int x = touch->last_x; in report_pen_down()