Home
last modified time | relevance | path

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

/Linux-v6.1/drivers/input/touchscreen/
Dmsg2638.c37 u8 xy_hi; /* higher bits of x and y coordinates */ member
110 if (p->xy_hi == 0xFF && p->x_low == 0xFF && p->y_low == 0xFF) in msg2638_ts_irq_handler()
113 x = (((p->xy_hi & 0xF0) << 4) | p->x_low); in msg2638_ts_irq_handler()
114 y = (((p->xy_hi & 0x0F) << 8) | p->y_low); in msg2638_ts_irq_handler()
/Linux-v6.1/drivers/input/mouse/
Dcyapa_gen3.c91 u8 xy_hi; member
1161 ((touch->xy_hi & 0xf0) << 4) | touch->x_lo); in cyapa_gen3_event_process()
1163 ((touch->xy_hi & 0x0f) << 8) | touch->y_lo); in cyapa_gen3_event_process()