From 6f4c3789333e4bc56065b1b24b0fc5c16e97805c Mon Sep 17 00:00:00 2001 From: Diego Date: Sun, 5 May 2019 15:26:54 +0000 Subject: [PATCH] vfs5011: Add support for Lenovo Preferred Pro Keyboard (KUF1256) Add support for the Lenovo Preferred Pro USB Fingerprint Keyboard KUF1256 by declaring support for USB ID 138a:0015. Closes: #125 --- libfprint/drivers/vfs5011.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libfprint/drivers/vfs5011.c b/libfprint/drivers/vfs5011.c index 2fcb822a..e1858332 100644 --- a/libfprint/drivers/vfs5011.c +++ b/libfprint/drivers/vfs5011.c @@ -879,6 +879,7 @@ static void dev_deactivate(struct fp_img_dev *dev) static const struct usb_id id_table[] = { { .vendor = 0x138a, .product = 0x0010 /* Validity device from some Toshiba laptops */ }, { .vendor = 0x138a, .product = 0x0011 /* vfs5011 */ }, + { .vendor = 0x138a, .product = 0x0015 /* Validity device from Lenovo Preferred Pro USB Fingerprint Keyboard KUF1256 */ }, { .vendor = 0x138a, .product = 0x0017 /* Validity device from Lenovo T440 laptops */ }, { .vendor = 0x138a, .product = 0x0018 /* one more Validity device */ }, { 0, 0, 0, },