mirror of
https://gitlab.freedesktop.org/libfprint/libfprint.git
synced 2025-11-15 07:38:12 +00:00
drivers: Remove UPEKE2 driver
The device is already handled by upektc_img driver, and its sources still exist in git if needed. https://bugs.freedesktop.org/show_bug.cgi?id=106514
This commit is contained in:
@@ -33,7 +33,7 @@ enum {
|
||||
VFS101_ID = 10,
|
||||
VFS301_ID = 11,
|
||||
AES2550_ID = 12,
|
||||
UPEKE2_ID = 13,
|
||||
/* UPEKE2_ID = 13 */
|
||||
AES1660_ID = 14,
|
||||
AES2660_ID = 15,
|
||||
AES3500_ID = 16,
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -671,18 +671,14 @@ static int discover(struct libusb_device_descriptor *dsc, uint32_t *devtype)
|
||||
{
|
||||
if (dsc->idProduct == 0x2020 && dsc->bcdDevice == 1)
|
||||
return 1;
|
||||
#ifndef ENABLE_UPEKE2
|
||||
if (dsc->idProduct == 0x2016 && dsc->bcdDevice == 2)
|
||||
return 1;
|
||||
#endif
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct usb_id id_table[] = {
|
||||
#ifndef ENABLE_UPEKE2
|
||||
{ .vendor = 0x147e, .product = 0x2016 },
|
||||
#endif
|
||||
{ .vendor = 0x147e, .product = 0x2020 },
|
||||
{ 0, 0, 0, },
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user