Lines Matching defs:props
68 struct touchscreen_properties props;
186 touchscreen_report_pos(input_dev, &data->props, x, y, true);
337 const struct touchscreen_properties *props = &data->props;
354 val = (props->max_x >> 8) & 0xf;
355 val |= ((props->max_y >> 8) & 0xf) << 4;
360 val = props->max_x & 0xff;
365 val = props->max_x & 0xff;
452 struct touchscreen_properties *props = &data->props;
454 if (device_property_read_u32(dev, "x-size", &props->max_x)) {
459 if (device_property_read_u32(dev, "y-size", &props->max_y)) {
470 props->invert_x = true;
472 props->invert_y = true;
474 props->swap_x_y = false;
551 touchscreen_parse_properties(input_dev, true, &data->props);
552 if (!data->props.max_x || !data->props.max_y) {
560 0, data->props.max_x, 0, 0);
562 0, data->props.max_y, 0, 0);