Lines Matching refs:features
58 struct wacom_features *features)
93 features->x_max = get_unaligned_le16(&data[3]);
94 features->y_max = get_unaligned_le16(&data[5]);
95 features->pressure_max = get_unaligned_le16(&data[11]);
96 features->fw_version = get_unaligned_le16(&data[13]);
100 features->x_max, features->y_max,
101 features->pressure_max, features->fw_version);
170 struct wacom_features features = { 0 };
178 error = wacom_query_device(client, &features);
197 input->id.version = features.fw_version;
209 input_set_abs_params(input, ABS_X, 0, features.x_max, 0, 0);
210 input_set_abs_params(input, ABS_Y, 0, features.y_max, 0, 0);
212 0, features.pressure_max, 0, 0);