From 128d809227bbef1d3bd8e7c7e1f9b68a335db252 Mon Sep 17 00:00:00 2001 From: Aris Lin Date: Fri, 17 Sep 2021 15:03:51 +0800 Subject: [PATCH] synaptics: add new PID 0x0123, 0x0126, and 0x0129 --- 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 04cd143..2e2b591 100644 --- a/data/autosuspend.hwdb +++ b/data/autosuspend.hwdb @@ -169,6 +169,9 @@ usb:v06CBp00C9* usb:v06CBp0100* usb:v06CBp00F0* usb:v06CBp0103* +usb:v06CBp0123* +usb:v06CBp0126* +usb:v06CBp0129* ID_AUTOSUSPEND=1 # Supported by libfprint driver upeksonly diff --git a/libfprint/drivers/synaptics/synaptics.c b/libfprint/drivers/synaptics/synaptics.c index 16d5afd..98627ed 100644 --- a/libfprint/drivers/synaptics/synaptics.c +++ b/libfprint/drivers/synaptics/synaptics.c @@ -40,6 +40,9 @@ static const FpIdEntry id_table[] = { { .vid = SYNAPTICS_VENDOR_ID, .pid = 0x0100, }, { .vid = SYNAPTICS_VENDOR_ID, .pid = 0x00F0, }, { .vid = SYNAPTICS_VENDOR_ID, .pid = 0x0103, }, + { .vid = SYNAPTICS_VENDOR_ID, .pid = 0x0123, }, + { .vid = SYNAPTICS_VENDOR_ID, .pid = 0x0126, }, + { .vid = SYNAPTICS_VENDOR_ID, .pid = 0x0129, }, { .vid = 0, .pid = 0, .driver_data = 0 }, /* terminating entry */ };