Lines Matching refs:axis
36 unsigned long axis, in touchscreen_set_params() argument
41 if (!test_bit(axis, dev->absbit)) { in touchscreen_set_params()
44 axis); in touchscreen_set_params()
48 absinfo = &dev->absinfo[axis]; in touchscreen_set_params()
66 unsigned int axis; in touchscreen_parse_properties() local
74 axis = multitouch ? ABS_MT_POSITION_X : ABS_X; in touchscreen_parse_properties()
77 axis) + 1, in touchscreen_parse_properties()
80 input_abs_get_fuzz(input, axis), in touchscreen_parse_properties()
83 touchscreen_set_params(input, axis, maximum - 1, fuzz); in touchscreen_parse_properties()
85 axis = multitouch ? ABS_MT_POSITION_Y : ABS_Y; in touchscreen_parse_properties()
88 axis) + 1, in touchscreen_parse_properties()
91 input_abs_get_fuzz(input, axis), in touchscreen_parse_properties()
94 touchscreen_set_params(input, axis, maximum - 1, fuzz); in touchscreen_parse_properties()
96 axis = multitouch ? ABS_MT_PRESSURE : ABS_PRESSURE; in touchscreen_parse_properties()
99 input_abs_get_max(input, axis), in touchscreen_parse_properties()
103 input_abs_get_fuzz(input, axis), in touchscreen_parse_properties()
106 touchscreen_set_params(input, axis, maximum, fuzz); in touchscreen_parse_properties()