Goodix GT917S is a touchscreen chip from Goodix that is in the GT1x family. Add its support by assigning the gt1x config to it. Signed-off-by: Icenowy Zheng <icenowy@xxxxxxx> --- drivers/input/touchscreen/goodix.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/input/touchscreen/goodix.c b/drivers/input/touchscreen/goodix.c index bfd067d7145e..43d8e1b8fb7f 100644 --- a/drivers/input/touchscreen/goodix.c +++ b/drivers/input/touchscreen/goodix.c @@ -239,7 +239,8 @@ static const struct goodix_chip_data *goodix_get_chip_data(const char *id) { if (!strcmp(id, "1151") || !strcmp(id, "5663") || - !strcmp(id, "5688")) + !strcmp(id, "5688") || + !strcmp(id, "917S")) return >1x_chip_data; if (!strcmp(id, "911") || @@ -1047,6 +1048,7 @@ static const struct of_device_id goodix_of_match[] = { { .compatible = "goodix,gt911" }, { .compatible = "goodix,gt9110" }, { .compatible = "goodix,gt912" }, + { .compatible = "goodix,gt917s" }, { .compatible = "goodix,gt927" }, { .compatible = "goodix,gt9271" }, { .compatible = "goodix,gt928" }, -- 2.23.0