diff mbox series

[v0001,1/1] input/ts: ili210x: send abs-mt-pressure for untouched

Message ID 20231017131057.1034956-1-markus.burri@mt.com (mailing list archive)
State New
Headers show
Series [v0001,1/1] input/ts: ili210x: send abs-mt-pressure for untouched | expand

Commit Message

Markus Burri Oct. 17, 2023, 1:10 p.m. UTC
Send the ABS_MT_PRESSURE event in case of untouched with zero pressure.
Multitouch pressure is only sent on first touch.

Therefore send an ABS_MT_PRESSURE event in case of untouched with zero pressure.
This avoids that the next ABS_MT_PRESSURE event will
be filtered out by input_defuzz_abs_event() in input.c since the pressure
value has not changed.

Signed-off-by: Markus Burri <markus.burri@mt.com>
---
 drivers/input/touchscreen/ili210x.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Comments

gerz-1 Oct. 19, 2023, 1:18 p.m. UTC | #1
Tested-by: Burak Gerz burak.gerz@mt.com
diff mbox series

Patch

diff --git a/drivers/input/touchscreen/ili210x.c b/drivers/input/touchscreen/ili210x.c
index e9bd36a..6b79513 100644
--- a/drivers/input/touchscreen/ili210x.c
+++ b/drivers/input/touchscreen/ili210x.c
@@ -318,7 +318,8 @@  static bool ili210x_report_events(struct ili210x *priv, u8 *touchdata)
 			if (priv->chip->has_pressure_reg)
 				input_report_abs(input, ABS_MT_PRESSURE, z);
 			contact = true;
-		}
+		} else if (priv->chip->has_pressure_reg)
+			input_report_abs(input, ABS_MT_PRESSURE, 0);
 	}
 
 	input_mt_report_pointer_emulation(input, false);