diff options
| author | Ondrej Jirman <megi@xff.cz> | 2022-08-11 16:16:54 -0700 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2022-09-20 12:43:46 +0200 |
| commit | f05939158a4141f35580005b14a2e715e37c6871 (patch) | |
| tree | e06cb4124805795e665e72e0ac3b56617c2217ce | |
| parent | 37c81d9f1d1b1458894454efcb857f6a769b6bc4 (diff) | |
| download | linux-f05939158a4141f35580005b14a2e715e37c6871.tar.gz linux-f05939158a4141f35580005b14a2e715e37c6871.tar.bz2 linux-f05939158a4141f35580005b14a2e715e37c6871.zip | |
Input: goodix - add support for GT1158
[ Upstream commit 425fe4709c76e35f93f4c0e50240f0b61b2a2e54 ]
This controller is used by PinePhone and PinePhone Pro. Support for
the PinePhone Pro will be added in a later patch set.
Signed-off-by: Ondrej Jirman <megi@xff.cz>
Signed-off-by: Jarrah Gosbell <kernel@undef.tools>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Link: https://lore.kernel.org/r/20220809091200.290492-1-kernel@undef.tools
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
| -rw-r--r-- | drivers/input/touchscreen/goodix.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/input/touchscreen/goodix.c b/drivers/input/touchscreen/goodix.c index aa45a9fee6a0..06d4fcafb766 100644 --- a/drivers/input/touchscreen/goodix.c +++ b/drivers/input/touchscreen/goodix.c @@ -95,6 +95,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 }, |
