touchdata         105 drivers/input/touchscreen/ili210x.c static bool ili210x_touchdata_to_coords(struct ili210x *priv, u8 *touchdata,
touchdata         112 drivers/input/touchscreen/ili210x.c 	if (touchdata[0] & BIT(finger))
touchdata         115 drivers/input/touchscreen/ili210x.c 	*x = get_unaligned_be16(touchdata + 1 + (finger * 4) + 0);
touchdata         116 drivers/input/touchscreen/ili210x.c 	*y = get_unaligned_be16(touchdata + 1 + (finger * 4) + 2);
touchdata         121 drivers/input/touchscreen/ili210x.c static bool ili251x_touchdata_to_coords(struct ili210x *priv, u8 *touchdata,
touchdata         128 drivers/input/touchscreen/ili210x.c 	*x = get_unaligned_be16(touchdata + 1 + (finger * 5) + 0);
touchdata         133 drivers/input/touchscreen/ili210x.c 	*y = get_unaligned_be16(touchdata + 1 + (finger * 5) + 2);
touchdata         138 drivers/input/touchscreen/ili210x.c static bool ili210x_report_events(struct ili210x *priv, u8 *touchdata)
touchdata         147 drivers/input/touchscreen/ili210x.c 			touch = ili210x_touchdata_to_coords(priv, touchdata,
touchdata         150 drivers/input/touchscreen/ili210x.c 			touch = ili251x_touchdata_to_coords(priv, touchdata,
touchdata         168 drivers/input/touchscreen/ili210x.c 		contact = touchdata[0] & 0xf3;
touchdata         178 drivers/input/touchscreen/ili210x.c 	u8 touchdata[64] = { 0 };
touchdata         184 drivers/input/touchscreen/ili210x.c 					 touchdata, sizeof(touchdata));
touchdata         187 drivers/input/touchscreen/ili210x.c 					 touchdata, 31);
touchdata         188 drivers/input/touchscreen/ili210x.c 		if (!error && touchdata[0] == 2)
touchdata         189 drivers/input/touchscreen/ili210x.c 			error = ili210x_read(client, &touchdata[31], 20);
touchdata         198 drivers/input/touchscreen/ili210x.c 	touch = ili210x_report_events(priv, touchdata);