Lines Matching defs:resp
229 } resp = { 0 };
231 error = synaptics_send_cmd(psmouse, query_cmd, resp.buf + 1);
235 *val = be32_to_cpu(resp.be_val);
366 u8 resp[3];
372 error = synaptics_send_cmd(psmouse, SYN_QUE_RESOLUTION, resp);
374 if (resp[0] != 0 && (resp[1] & 0x80) && resp[2] != 0) {
375 info->x_res = resp[0]; /* x resolution in units/mm */
376 info->y_res = resp[2]; /* y resolution in units/mm */
383 SYN_QUE_EXT_MAX_COORDS, resp);
388 info->x_max = (resp[0] << 5) | ((resp[1] & 0x0f) << 1);
389 info->y_max = (resp[2] << 5) | ((resp[1] & 0xf0) >> 3);
405 SYN_QUE_EXT_MIN_COORDS, resp);
410 info->x_min = (resp[0] << 5) | ((resp[1] & 0x0f) << 1);
411 info->y_min = (resp[2] << 5) | ((resp[1] & 0xf0) >> 3);