Lines Matching defs:input
11 #include <linux/input.h>
12 #include <linux/input/mt.h>
13 #include <linux/input/touchscreen.h>
142 * @in_dev: pointer to the input device structure
188 struct input_dev *input = ts->in_dev;
222 input_mt_assign_slots(input, slots, pos, finger_down_count, DELTA_MIN);
224 input_mt_slot(input, slots[i]);
225 input_mt_report_slot_state(input, MT_TOOL_FINGER, true);
226 input_report_abs(input, ABS_MT_POSITION_X, pos[i].x);
227 input_report_abs(input, ABS_MT_POSITION_Y, pos[i].y);
230 input_mt_sync_frame(input);
231 input_sync(input);
444 /* register the device to input subsystem */
535 dev_err(dev, "failed to register input device\n");