24 lines
880 B
Diff
24 lines
880 B
Diff
From: Ondrej Jirman <megous@megous.com>
|
|
Date: Thu, 11 Nov 2021 14:28:41 +0100
|
|
Subject: [PATCH 18/36] input: touchscreen: goodix: Add support for GT1158
|
|
|
|
This controller is used by Pinephone Pro.
|
|
|
|
Signed-off-by: Ondrej Jirman <megous@megous.com>
|
|
---
|
|
drivers/input/touchscreen/goodix.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/drivers/input/touchscreen/goodix.c b/drivers/input/touchscreen/goodix.c
|
|
index d087fc9..fbefdc1 100644
|
|
--- a/drivers/input/touchscreen/goodix.c
|
|
+++ b/drivers/input/touchscreen/goodix.c
|
|
@@ -94,6 +94,7 @@ static const struct goodix_chip_data gt9x_chip_data = {
|
|
|
|
static const struct goodix_chip_id goodix_chip_ids[] = {
|
|
{ .id = "1151", .data = >1x_chip_data },
|
|
+ { .id = "1158", .data = >1x_chip_data },
|
|
{ .id = "5663", .data = >1x_chip_data },
|
|
{ .id = "5688", .data = >1x_chip_data },
|
|
{ .id = "917S", .data = >1x_chip_data },
|