From c64fa9c81b4d0b0ceda79c3ff27c59c47ce669ba Mon Sep 17 00:00:00 2001 From: Puspendu Banerjee Date: Mon, 12 Feb 2024 19:50:50 -0600 Subject: [PATCH] synaptics: Add new PID 0x0124 --- data/autosuspend.hwdb | 1 + libfprint/drivers/synaptics/synaptics.c | 1 + 2 files changed, 2 insertions(+) diff --git a/data/autosuspend.hwdb b/data/autosuspend.hwdb index 44dbbcd3..366f286c 100644 --- a/data/autosuspend.hwdb +++ b/data/autosuspend.hwdb @@ -224,6 +224,7 @@ usb:v06CBp0100* usb:v06CBp00F0* usb:v06CBp0103* usb:v06CBp0123* +usb:v06CBp0124* usb:v06CBp0126* usb:v06CBp0129* usb:v06CBp0168* diff --git a/libfprint/drivers/synaptics/synaptics.c b/libfprint/drivers/synaptics/synaptics.c index 55e4d44c..138e734d 100644 --- a/libfprint/drivers/synaptics/synaptics.c +++ b/libfprint/drivers/synaptics/synaptics.c @@ -40,6 +40,7 @@ static const FpIdEntry id_table[] = { { .vid = SYNAPTICS_VENDOR_ID, .pid = 0x00F0, }, { .vid = SYNAPTICS_VENDOR_ID, .pid = 0x0103, }, { .vid = SYNAPTICS_VENDOR_ID, .pid = 0x0123, }, + { .vid = SYNAPTICS_VENDOR_ID, .pid = 0x0124, }, { .vid = SYNAPTICS_VENDOR_ID, .pid = 0x0126, }, { .vid = SYNAPTICS_VENDOR_ID, .pid = 0x0129, }, { .vid = SYNAPTICS_VENDOR_ID, .pid = 0x0168, },