From: Aris Lin Date: Mon, 14 Jul 2025 11:52:56 +0800 Subject: [PATCH] synaptics: add new PID 0x019F, 0x109 and 0x10A Origin: upstream, https://gitlab.freedesktop.org/libfprint/libfprint/-/commit/7f5304d6eec37955c8d462e571c3d72af0be4684 Bug-Ubuntu: https://bugs.launchpad.net/bugs/2133704 Signed-off-by: Bin Li --- data/autosuspend.hwdb | 3 +++ libfprint/drivers/synaptics/synaptics.c | 3 +++ 2 files changed, 6 insertions(+) diff --git a/data/autosuspend.hwdb b/data/autosuspend.hwdb index 7a1759e..10e643c 100644 --- a/data/autosuspend.hwdb +++ b/data/autosuspend.hwdb @@ -232,6 +232,8 @@ usb:v06CBp00F0* usb:v06CBp0103* usb:v06CBp0107* usb:v06CBp0108* +usb:v06CBp0109* +usb:v06CBp010A* usb:v06CBp0123* usb:v06CBp0124* usb:v06CBp0126* @@ -242,6 +244,7 @@ usb:v06CBp0104* usb:v06CBp0173* usb:v06CBp0106* usb:v06CBp019D* +usb:v06CBp019F* ID_AUTOSUSPEND=1 ID_PERSIST=0 diff --git a/libfprint/drivers/synaptics/synaptics.c b/libfprint/drivers/synaptics/synaptics.c index d272421..29fb5f1 100644 --- a/libfprint/drivers/synaptics/synaptics.c +++ b/libfprint/drivers/synaptics/synaptics.c @@ -41,6 +41,8 @@ static const FpIdEntry id_table[] = { { .vid = SYNAPTICS_VENDOR_ID, .pid = 0x0103, }, { .vid = SYNAPTICS_VENDOR_ID, .pid = 0x0107, }, { .vid = SYNAPTICS_VENDOR_ID, .pid = 0x0108, }, + { .vid = SYNAPTICS_VENDOR_ID, .pid = 0x0109, }, + { .vid = SYNAPTICS_VENDOR_ID, .pid = 0x010A, }, { .vid = SYNAPTICS_VENDOR_ID, .pid = 0x0123, }, { .vid = SYNAPTICS_VENDOR_ID, .pid = 0x0124, }, { .vid = SYNAPTICS_VENDOR_ID, .pid = 0x0126, }, @@ -51,6 +53,7 @@ static const FpIdEntry id_table[] = { { .vid = SYNAPTICS_VENDOR_ID, .pid = 0x0173, }, { .vid = SYNAPTICS_VENDOR_ID, .pid = 0x0106, }, { .vid = SYNAPTICS_VENDOR_ID, .pid = 0x019D, }, + { .vid = SYNAPTICS_VENDOR_ID, .pid = 0x019F, }, { .vid = 0, .pid = 0, .driver_data = 0 }, /* terminating entry */ };