Added driver for validity vfs7552
This commit is contained in:
parent
4a700758a6
commit
e0de8c67b6
6 changed files with 4064 additions and 2 deletions
|
@ -195,6 +195,10 @@ usb:v138Ap0017*
|
||||||
usb:v138Ap0018*
|
usb:v138Ap0018*
|
||||||
ID_AUTOSUSPEND=1
|
ID_AUTOSUSPEND=1
|
||||||
|
|
||||||
|
# Supported by libfprint driver vfs7552
|
||||||
|
usb:v138Ap0091*
|
||||||
|
ID_AUTOSUSPEND=1
|
||||||
|
|
||||||
# Known unsupported devices
|
# Known unsupported devices
|
||||||
usb:v04F3p036B*
|
usb:v04F3p036B*
|
||||||
usb:v04F3p0C00*
|
usb:v04F3p0C00*
|
||||||
|
@ -233,7 +237,6 @@ usb:v138Ap003C*
|
||||||
usb:v138Ap003D*
|
usb:v138Ap003D*
|
||||||
usb:v138Ap003F*
|
usb:v138Ap003F*
|
||||||
usb:v138Ap0090*
|
usb:v138Ap0090*
|
||||||
usb:v138Ap0091*
|
|
||||||
usb:v138Ap0092*
|
usb:v138Ap0092*
|
||||||
usb:v138Ap0094*
|
usb:v138Ap0094*
|
||||||
usb:v138Ap0097*
|
usb:v138Ap0097*
|
||||||
|
|
1070
libfprint/drivers/vfs7552.c
Normal file
1070
libfprint/drivers/vfs7552.c
Normal file
File diff suppressed because it is too large
Load diff
2986
libfprint/drivers/vfs7552_proto.h
Normal file
2986
libfprint/drivers/vfs7552_proto.h
Normal file
File diff suppressed because it is too large
Load diff
|
@ -66,7 +66,6 @@ static const FpIdEntry whitelist_id_table[] = {
|
||||||
{ .vid = 0x138a, .pid = 0x003d },
|
{ .vid = 0x138a, .pid = 0x003d },
|
||||||
{ .vid = 0x138a, .pid = 0x003f },
|
{ .vid = 0x138a, .pid = 0x003f },
|
||||||
{ .vid = 0x138a, .pid = 0x0090 },
|
{ .vid = 0x138a, .pid = 0x0090 },
|
||||||
{ .vid = 0x138a, .pid = 0x0091 },
|
|
||||||
{ .vid = 0x138a, .pid = 0x0092 },
|
{ .vid = 0x138a, .pid = 0x0092 },
|
||||||
{ .vid = 0x138a, .pid = 0x0094 },
|
{ .vid = 0x138a, .pid = 0x0094 },
|
||||||
{ .vid = 0x138a, .pid = 0x0097 },
|
{ .vid = 0x138a, .pid = 0x0097 },
|
||||||
|
|
|
@ -140,6 +140,9 @@ foreach driver: drivers
|
||||||
if driver == 'vfs5011'
|
if driver == 'vfs5011'
|
||||||
drivers_sources += [ 'drivers/vfs5011.c' ]
|
drivers_sources += [ 'drivers/vfs5011.c' ]
|
||||||
endif
|
endif
|
||||||
|
if driver == 'vfs7552'
|
||||||
|
drivers_sources += [ 'drivers/vfs7552.c' ]
|
||||||
|
endif
|
||||||
if driver == 'upektc_img'
|
if driver == 'upektc_img'
|
||||||
drivers_sources += [ 'drivers/upektc_img.c', 'drivers/upek_proto.c' ]
|
drivers_sources += [ 'drivers/upektc_img.c', 'drivers/upek_proto.c' ]
|
||||||
endif
|
endif
|
||||||
|
|
|
@ -97,6 +97,7 @@ virtual_drivers = [
|
||||||
default_drivers = [
|
default_drivers = [
|
||||||
'upektc_img',
|
'upektc_img',
|
||||||
'vfs5011',
|
'vfs5011',
|
||||||
|
'vfs7552',
|
||||||
'aes3500',
|
'aes3500',
|
||||||
'aes4000',
|
'aes4000',
|
||||||
'aes1610',
|
'aes1610',
|
||||||
|
|
Loading…
Reference in a new issue