search for: input_mt_init_slot

Displaying 3 results from an estimated 3 matches for "input_mt_init_slot".

Did you mean: input_mt_init_slots
2020 Jan 02
2
[PATCH] virtio_input: Initialize multi-touch slots on ABS_MT_SLOT
For multi-touch devices the frontend needs to initialize the correct number of slots for touch tracking. Hardware drivers do this by calling input_mt_init_slots() on initialization. For virtio_input the function must be called when the backend sends ABS_MT_SLOT. Signed-off-by: Rudolf J Streif <rstreif at blackberry.com> --- drivers/virtio/virtio_input.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/drivers/virtio/virtio_input.c b/drivers...
2020 Apr 15
0
[PATCH] virtio_input: Initialize multi-touch slots on ABS_MT_SLOT
...1:12 AM To: kraxel at redhat.com Cc: virtualization at lists.linux-foundation.org Subject: [PATCH] virtio_input: Initialize multi-touch slots on ABS_MT_SLOT For multi-touch devices the frontend needs to initialize the correct number of slots for touch tracking. Hardware drivers do this by calling input_mt_init_slots() on initialization. For virtio_input the function must be called when the backend sends ABS_MT_SLOT. Signed-off-by: Rudolf J Streif <rstreif at blackberry.com> --- drivers/virtio/virtio_input.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/drivers/virtio/virtio_input.c b/drivers...
2020 Sep 09
17
[trivial PATCH] treewide: Convert switch/case fallthrough; to break;
...; } diff --git a/drivers/hid/wacom_wac.c b/drivers/hid/wacom_wac.c index 83dfec327c42..822dc15b59b6 100644 --- a/drivers/hid/wacom_wac.c +++ b/drivers/hid/wacom_wac.c @@ -3833,7 +3833,7 @@ int wacom_setup_touch_input_capabilities(struct input_dev *input_dev, case MTTPC_B: case TABLETPC2FG: input_mt_init_slots(input_dev, features->touch_max, INPUT_MT_DIRECT); - fallthrough; + break; case TABLETPC: case TABLETPCE: diff --git a/drivers/i2c/busses/i2c-i801.c b/drivers/i2c/busses/i2c-i801.c index e32ef3f01fe8..b13b1cbcac29 100644 --- a/drivers/i2c/busses/i2c-i801.c +++ b/drivers/i2c/busses/i2c-i8...