mirror of
https://gitlab.freedesktop.org/libfprint/libfprint.git
synced 2026-06-11 10:34:18 +00:00
576beb1ff5
LP: #1905593
26 lines
1.0 KiB
Diff
26 lines
1.0 KiB
Diff
From: Vincent Huang <vincent.huang@tw.synaptics.com>
|
|
Date: Thu, 15 Oct 2020 12:20:34 +0800
|
|
Subject: synaptics: add support to pid 0xF9, 0xFC, 0xC2
|
|
|
|
Origin: https://gitlab.freedesktop.org/libfprint/libfprint/-/commit/31319d9c6
|
|
|
|
Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/libfprint/+bug/1905593
|
|
---
|
|
libfprint/drivers/synaptics/synaptics.c | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
diff --git a/libfprint/drivers/synaptics/synaptics.c b/libfprint/drivers/synaptics/synaptics.c
|
|
index 9bbae99..a3d2a51 100644
|
|
--- a/libfprint/drivers/synaptics/synaptics.c
|
|
+++ b/libfprint/drivers/synaptics/synaptics.c
|
|
@@ -31,6 +31,9 @@ static const FpIdEntry id_table[] = {
|
|
{ .vid = SYNAPTICS_VENDOR_ID, .pid = 0xBD, },
|
|
{ .vid = SYNAPTICS_VENDOR_ID, .pid = 0xE9, },
|
|
{ .vid = SYNAPTICS_VENDOR_ID, .pid = 0xDF, },
|
|
+ { .vid = SYNAPTICS_VENDOR_ID, .pid = 0xF9, },
|
|
+ { .vid = SYNAPTICS_VENDOR_ID, .pid = 0xFC, },
|
|
+ { .vid = SYNAPTICS_VENDOR_ID, .pid = 0xC2, },
|
|
{ .vid = 0, .pid = 0, .driver_data = 0 }, /* terminating entry */
|
|
};
|
|
|