From ecb975052d99c439c3776764a69675ef61ef9964 Mon Sep 17 00:00:00 2001 From: Vincent Huang Date: Wed, 15 Jul 2026 11:38:35 +0800 Subject: [PATCH] synaptics: add new PIDs 0x10D 0x10E --- data/autosuspend.hwdb | 2 ++ libfprint/drivers/synaptics/synaptics.c | 2 ++ 2 files changed, 4 insertions(+) diff --git a/data/autosuspend.hwdb b/data/autosuspend.hwdb index df154e4a..89e93aad 100644 --- a/data/autosuspend.hwdb +++ b/data/autosuspend.hwdb @@ -298,6 +298,8 @@ usb:v06CBp0107* usb:v06CBp0108* usb:v06CBp0109* usb:v06CBp010A* +usb:v06CBp010D* +usb:v06CBp010E* usb:v06CBp0123* usb:v06CBp0124* usb:v06CBp0126* diff --git a/libfprint/drivers/synaptics/synaptics.c b/libfprint/drivers/synaptics/synaptics.c index c33f4403..7f61284d 100644 --- a/libfprint/drivers/synaptics/synaptics.c +++ b/libfprint/drivers/synaptics/synaptics.c @@ -48,6 +48,8 @@ static const FpIdEntry id_table[] = { { .vid = SYNAPTICS_VENDOR_ID, .pid = 0x0108, }, { .vid = SYNAPTICS_VENDOR_ID, .pid = 0x0109, }, { .vid = SYNAPTICS_VENDOR_ID, .pid = 0x010A, }, + { .vid = SYNAPTICS_VENDOR_ID, .pid = 0x010D, }, + { .vid = SYNAPTICS_VENDOR_ID, .pid = 0x010E, }, { .vid = SYNAPTICS_VENDOR_ID, .pid = 0x0123, }, { .vid = SYNAPTICS_VENDOR_ID, .pid = 0x0124, }, { .vid = SYNAPTICS_VENDOR_ID, .pid = 0x0126, },