diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2017-03-08 14:44:26 +1000 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2017-03-08 14:44:26 +1000 |
commit | b51546314fa0eaf7112e6a702e88153015c82389 (patch) | |
tree | 55c25398d846ee75e377c7ab6132c7500821ad47 /test | |
parent | bb3d6e000effda685d786e8e2bdd2a3674a40ba4 (diff) |
test: drop ABS_MT_PRESSURE from the bcm5974
This device only sends ABS_PRESSURE
https://bugs.freedesktop.org/show_bug.cgi?id=100106
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'test')
-rw-r--r-- | test/litest-device-bcm5974.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/test/litest-device-bcm5974.c b/test/litest-device-bcm5974.c index c9780a5..7d87285 100644 --- a/test/litest-device-bcm5974.c +++ b/test/litest-device-bcm5974.c @@ -40,7 +40,6 @@ static struct input_event down[] = { { .type = EV_ABS, .code = ABS_MT_TRACKING_ID, .value = LITEST_AUTO_ASSIGN }, { .type = EV_ABS, .code = ABS_MT_POSITION_X, .value = LITEST_AUTO_ASSIGN }, { .type = EV_ABS, .code = ABS_MT_POSITION_Y, .value = LITEST_AUTO_ASSIGN }, - { .type = EV_ABS, .code = ABS_MT_PRESSURE, .value = LITEST_AUTO_ASSIGN }, { .type = EV_SYN, .code = SYN_REPORT, .value = 0 }, { .type = -1, .code = -1 }, }; @@ -52,7 +51,6 @@ static struct input_event move[] = { { .type = EV_ABS, .code = ABS_PRESSURE, .value = LITEST_AUTO_ASSIGN }, { .type = EV_ABS, .code = ABS_MT_POSITION_X, .value = LITEST_AUTO_ASSIGN }, { .type = EV_ABS, .code = ABS_MT_POSITION_Y, .value = LITEST_AUTO_ASSIGN }, - { .type = EV_ABS, .code = ABS_MT_PRESSURE, .value = LITEST_AUTO_ASSIGN }, { .type = EV_SYN, .code = SYN_REPORT, .value = 0 }, { .type = -1, .code = -1 }, }; @@ -90,7 +88,6 @@ static struct input_absinfo absinfo[] = { { ABS_MT_WIDTH_MAJOR, 0, 2048, 81, 0, 0 }, { ABS_MT_WIDTH_MINOR, 0, 2048, 81, 0, 0 }, { ABS_MT_TRACKING_ID, 0, 65535, 0, 0, 0 }, - { ABS_MT_PRESSURE, 0, 255, 0, 0, 0 }, { .value = -1 }, }; |