Home
last modified time | relevance | path

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

/openbmc/linux/drivers/input/touchscreen/
H A Dektf2127.c51 static void ektf2127_parse_coordinates(const u8 *buf, unsigned int touch_count, in ektf2127_parse_coordinates() argument
57 for (i = 0; i < touch_count; i++) { in ektf2127_parse_coordinates()
74 unsigned int touch_count, i; in ektf2127_report_event() local
76 touch_count = buf[1] & 0x07; in ektf2127_report_event()
77 if (touch_count > EKTF2127_MAX_TOUCHES) { in ektf2127_report_event()
80 touch_count, EKTF2127_MAX_TOUCHES); in ektf2127_report_event()
81 touch_count = EKTF2127_MAX_TOUCHES; in ektf2127_report_event()
84 ektf2127_parse_coordinates(buf, touch_count, touches); in ektf2127_report_event()
86 touch_count, 0); in ektf2127_report_event()
88 for (i = 0; i < touch_count; i++) { in ektf2127_report_event()
H A Dchipone_icn8318.c44 __u8 touch_count; member
105 if (touch_data.touch_count > ICN8318_MAX_TOUCHES) { in icn8318_irq()
107 touch_data.touch_count, ICN8318_MAX_TOUCHES); in icn8318_irq()
108 touch_data.touch_count = ICN8318_MAX_TOUCHES; in icn8318_irq()
111 for (i = 0; i < touch_data.touch_count; i++) { in icn8318_irq()
H A Dchipone_icn8505.c64 u8 touch_count; member
336 if (touch_data.touch_count > ICN8505_MAX_TOUCHES) { in icn8505_irq()
338 touch_data.touch_count, ICN8505_MAX_TOUCHES); in icn8505_irq()
339 touch_data.touch_count = ICN8505_MAX_TOUCHES; in icn8505_irq()
342 for (i = 0; i < touch_data.touch_count; i++) { in icn8505_irq()
H A Dhideep.c728 int touch_count = ts->xfer_buf[0]; in hideep_parse_and_report() local
735 touch_count, key_count, lpm_count); in hideep_parse_and_report()
737 touch_count = min(touch_count, HIDEEP_MT_MAX); in hideep_parse_and_report()
738 for (i = 0; i < touch_count; i++) in hideep_parse_and_report()
/openbmc/linux/drivers/hid/
H A Dhid-sony.c1008 static int sony_register_touchpad(struct sony_sc *sc, int touch_count, in sony_register_touchpad() argument
1064 ret = input_mt_init_slots(sc->touchpad, touch_count, INPUT_MT_POINTER); in sony_register_touchpad()