Searched defs:coords (Results 1 - 2 of 2) sorted by relevance

/drivers/input/touchscreen/
H A Djornada720_ts.c57 static int jornada720_ts_average(int coords[4]) argument
59 int coord, high_bits = coords[3];
61 coord = coords[0] | ((high_bits & 0x03) << 8);
62 coord += coords[1] | ((high_bits & 0x0c) << 6);
63 coord += coords[2] | ((high_bits & 0x30) << 4);
/drivers/input/misc/
H A Dmpu3050.c154 * @coords: co-ordinates to update
159 struct axis_data *coords)
164 coords->x = be16_to_cpu(buffer[0]);
165 coords->y = be16_to_cpu(buffer[1]);
166 coords->z = be16_to_cpu(buffer[2]);
168 coords->x, coords->y, coords->z);
158 mpu3050_read_xyz(struct i2c_client *client, struct axis_data *coords) argument

Completed in 63 milliseconds