Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Input: edt-ft5x06 - add support for FocalTech FT8716

This driver is compatible with the FocalTech FT8716 touchscreen, which
supports up to 10 concurrent touch points. Add a compatible for it.

Signed-off-by: Jens Reidel <adrian@mainlining.org>
Link: https://lore.kernel.org/r/20250313202017.19621-3-adrian@mainlining.org
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>

authored by

Jens Reidel and committed by
Dmitry Torokhov
c6f908f8 06226bd4

+6
+6
drivers/input/touchscreen/edt-ft5x06.c
··· 1491 1491 .max_support_points = 10, 1492 1492 }; 1493 1493 1494 + static const struct edt_i2c_chip_data edt_ft8716_data = { 1495 + .max_support_points = 10, 1496 + }; 1497 + 1494 1498 static const struct edt_i2c_chip_data edt_ft8719_data = { 1495 1499 .max_support_points = 10, 1496 1500 }; ··· 1507 1503 /* Note no edt- prefix for compatibility with the ft6236.c driver */ 1508 1504 { .name = "ft6236", .driver_data = (long)&edt_ft6236_data }, 1509 1505 { .name = "ft8201", .driver_data = (long)&edt_ft8201_data }, 1506 + { .name = "ft8716", .driver_data = (long)&edt_ft8716_data }, 1510 1507 { .name = "ft8719", .driver_data = (long)&edt_ft8719_data }, 1511 1508 { /* sentinel */ } 1512 1509 }; ··· 1524 1519 /* Note focaltech vendor prefix for compatibility with ft6236.c */ 1525 1520 { .compatible = "focaltech,ft6236", .data = &edt_ft6236_data }, 1526 1521 { .compatible = "focaltech,ft8201", .data = &edt_ft8201_data }, 1522 + { .compatible = "focaltech,ft8716", .data = &edt_ft8716_data }, 1527 1523 { .compatible = "focaltech,ft8719", .data = &edt_ft8719_data }, 1528 1524 { /* sentinel */ } 1529 1525 };