raw_xy           1626 drivers/hid/hid-logitech-hidpp.c 		u8 *data, struct hidpp_touchpad_raw_xy *raw_xy)
raw_xy           1628 drivers/hid/hid-logitech-hidpp.c 	memset(raw_xy, 0, sizeof(struct hidpp_touchpad_raw_xy));
raw_xy           1629 drivers/hid/hid-logitech-hidpp.c 	raw_xy->end_of_frame = data[8] & 0x01;
raw_xy           1630 drivers/hid/hid-logitech-hidpp.c 	raw_xy->spurious_flag = (data[8] >> 1) & 0x01;
raw_xy           1631 drivers/hid/hid-logitech-hidpp.c 	raw_xy->finger_count = data[15] & 0x0f;
raw_xy           1632 drivers/hid/hid-logitech-hidpp.c 	raw_xy->button = (data[8] >> 2) & 0x01;
raw_xy           1634 drivers/hid/hid-logitech-hidpp.c 	if (raw_xy->finger_count) {
raw_xy           1635 drivers/hid/hid-logitech-hidpp.c 		hidpp_touchpad_touch_event(&data[2], &raw_xy->fingers[0]);
raw_xy           1636 drivers/hid/hid-logitech-hidpp.c 		hidpp_touchpad_touch_event(&data[9], &raw_xy->fingers[1]);