test: fix resolution on Wacom ISDv4 E6 Finger device

Resolution for x is 10, 9 for y. And while we're at it set the actual
resolution, not the fuzz.

No actual effect since resolution can't be set through uinput where we use
these devices.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
Peter Hutterer 2014-06-03 08:23:48 +10:00
parent ef24f328d8
commit 4d1bc5ef5f

View file

@ -63,12 +63,12 @@ static struct litest_device_interface interface = {
};
static struct input_absinfo absinfo[] = {
{ ABS_X, 0, 2776, 75 },
{ ABS_Y, 0, 1569, 129 },
{ ABS_MT_SLOT, 0, 1, 0 },
{ ABS_X, 0, 2776, 0, 0, 10 },
{ ABS_Y, 0, 1569, 0, 0, 9 },
{ ABS_MT_SLOT, 0, 1, 0, 0, 0 },
{ ABS_MT_POSITION_X, 0, 2776, 0, 0, 10 },
{ ABS_MT_POSITION_Y, 0, 1569, 0, 0, 9 },
{ ABS_MT_TRACKING_ID, 0, 65535, 0 },
{ ABS_MT_TRACKING_ID, 0, 65535, 0, 0, 0 },
{ .value = -1 },
};