Home
last modified time | relevance | path

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

/openbmc/linux/drivers/input/touchscreen/
H A Dili210x.c112 if (!(touchdata[0] & BIT(finger))) in ili210x_touchdata_to_coords()
115 *x = get_unaligned_be16(touchdata + 1 + (finger * 4) + 0); in ili210x_touchdata_to_coords()
116 *y = get_unaligned_be16(touchdata + 1 + (finger * 4) + 2); in ili210x_touchdata_to_coords()
174 *x = ((touchdata[1 + (finger * 4) + 0] & 0xf0) << 4) | in ili211x_touchdata_to_coords()
175 touchdata[1 + (finger * 4) + 1]; in ili211x_touchdata_to_coords()
176 *y = ((touchdata[1 + (finger * 4) + 0] & 0x0f) << 8) | in ili211x_touchdata_to_coords()
177 touchdata[1 + (finger * 4) + 2]; in ili211x_touchdata_to_coords()
284 *z = touchdata[1 + (finger * 5) + 4]; in ili251x_touchdata_to_coords()
335 u8 touchdata[ILI210X_DATA_SIZE] = { 0 }; in ili210x_irq() local
344 error = chip->get_touch_data(client, touchdata); in ili210x_irq()
[all …]