Re: [PATCH 2/2] Input: edt-ft5x06 - add support for FocalTech FT3519

From: Krzysztof Kozlowski

Date: Sat Mar 14 2026 - 06:25:25 EST


On Fri, Mar 13, 2026 at 12:09:51PM +0530, Bhushan Shah wrote:
> This driver is compatible with the FocalTech FT3519 touchscreen, which
> supports up to 10 concurrent touch points. Add a compatible for it.
>
> Signed-off-by: Bhushan Shah <bhushan.shah@xxxxxxxxxxxxxx>
> ---
> drivers/input/touchscreen/edt-ft5x06.c | 6 ++++++
> 1 file changed, 6 insertions(+)
>
> diff --git a/drivers/input/touchscreen/edt-ft5x06.c b/drivers/input/touchscreen/edt-ft5x06.c
> index d0ab644be006..52188e1aa9bc 100644
> --- a/drivers/input/touchscreen/edt-ft5x06.c
> +++ b/drivers/input/touchscreen/edt-ft5x06.c
> @@ -1479,6 +1479,10 @@ static const struct edt_i2c_chip_data edt_ft3518_data = {
> .max_support_points = 10,
> };
>
> +static const struct edt_i2c_chip_data edt_ft3519_data = {
> + .max_support_points = 10,
> +};

So same as edt_ft3518_data? Why are you duplicating it then?

Best regards,
Krzysztof