From: Dmitry Torokhov <dmitry.torokhov@gmail.com>
To: Benjamin Bara <bbara93@gmail.com>
Cc: linux-input@vger.kernel.org, linux-kernel@vger.kernel.org,
Benjamin Bara <benjamin.bara@skidata.com>
Subject: Re: [PATCH] Input: ads7846 - don't set ABS_PRESSURE when min == max
Date: Thu, 27 Jul 2023 13:39:16 -0700 [thread overview]
Message-ID: <ZMLV9BVxHx3jlE5R@google.com> (raw)
In-Reply-To: <20230727-ads7846-pressure-v1-1-fa74c7680191@skidata.com>
Hi Benjamin,
On Thu, Jul 27, 2023 at 05:19:57PM +0200, Benjamin Bara wrote:
> From: Benjamin Bara <benjamin.bara@skidata.com>
>
> When the optional fields "pressure_min" and "pressure_max" are not set,
> both fall back to 0, which results to the following libinput error:
>
> ADS7846 Touchscreen: kernel bug: device has min == max on ABS_PRESSURE
>
> Avoid it by only setting ABS_PRESSURE if the values differ.
What is the benefit of silently continuing without reporting pressure on
models that do support pressure readings, vs. using libinput's errors as
signal to adjust DT?
>
> Signed-off-by: Benjamin Bara <benjamin.bara@skidata.com>
> ---
> drivers/input/touchscreen/ads7846.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/input/touchscreen/ads7846.c b/drivers/input/touchscreen/ads7846.c
> index faea40dd66d0..2535424a5630 100644
> --- a/drivers/input/touchscreen/ads7846.c
> +++ b/drivers/input/touchscreen/ads7846.c
> @@ -1281,7 +1281,7 @@ static int ads7846_probe(struct spi_device *spi)
> pdata->y_min ? : 0,
> pdata->y_max ? : MAX_12BIT,
> 0, 0);
> - if (ts->model != 7845)
> + if (ts->model != 7845 && pdata->pressure_min != pdata->pressure_max)
> input_set_abs_params(input_dev, ABS_PRESSURE,
> pdata->pressure_min, pdata->pressure_max, 0, 0);
>
>
> ---
> base-commit: 451cc82bd11eb6a374f4dbcfc1cf007eafea91ab
> change-id: 20230727-ads7846-pressure-05edfb01887f
>
> Best regards,
> --
> Benjamin Bara <benjamin.bara@skidata.com>
>
Thanks.
--
Dmitry
next prev parent reply other threads:[~2023-07-27 20:39 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-07-27 15:19 [PATCH] Input: ads7846 - don't set ABS_PRESSURE when min == max Benjamin Bara
2023-07-27 20:39 ` Dmitry Torokhov [this message]
2023-07-28 13:38 ` Benjamin Bara
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ZMLV9BVxHx3jlE5R@google.com \
--to=dmitry.torokhov@gmail.com \
--cc=bbara93@gmail.com \
--cc=benjamin.bara@skidata.com \
--cc=linux-input@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox