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

From: Bhushan Shah

Date: Sat Mar 14 2026 - 10:00:29 EST


On Saturday, 14 March 2026 15:55:13 IST Krzysztof Kozlowski wrote:
> 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?
>

You are right, it does not need duplicating, I sent v2 which adjusts only dt-
bindings. Although, I must point out that this driver already contains some
duplicates and I simply followed that.