]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
Input: elants_i2c - report resolution information for touch major
authorJohnny Chuang <johnny.chuang@emc.com.tw>
Fri, 6 Mar 2020 18:05:20 +0000 (10:05 -0800)
committerDmitry Torokhov <dmitry.torokhov@gmail.com>
Fri, 6 Mar 2020 18:06:36 +0000 (10:06 -0800)
This patch supports reporting resolution for ABS_MT_TOUCH_MAJOR event.
This information is needed in showing pressure/width radius.

Signed-off-by: Johnny Chuang <johnny.chuang@emc.com.tw>
Reviewed-by: Harry Cutts <hcutts@chromium.org>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
Acked-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Link: https://lore.kernel.org/r/1582766000-23023-1-git-send-email-johnny.chuang.emc@gmail.com
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
drivers/input/touchscreen/elants_i2c.c

index 491179967b292b5e362837bc39866f3998a16efc..14c577c16b169ff15f686fa8fd5c49e4007e73cd 100644 (file)
@@ -1309,6 +1309,7 @@ static int elants_i2c_probe(struct i2c_client *client,
        input_set_abs_params(ts->input, ABS_MT_PRESSURE, 0, 255, 0, 0);
        input_abs_set_res(ts->input, ABS_MT_POSITION_X, ts->x_res);
        input_abs_set_res(ts->input, ABS_MT_POSITION_Y, ts->y_res);
+       input_abs_set_res(ts->input, ABS_MT_TOUCH_MAJOR, 1);
 
        error = input_register_device(ts->input);
        if (error) {