Finish implementation of AES1610 driver
Ported to the new internal libfprint API. https://bugzilla.redhat.com/show_bug.cgi?id=499732
This commit is contained in:
parent
a99e813bbf
commit
7c7402a697
4 changed files with 840 additions and 262 deletions
|
@ -89,7 +89,7 @@ AM_CONDITIONAL([ENABLE_UPEKSONLY], [test "$enable_upeksonly" != "no"])
|
||||||
AM_CONDITIONAL([ENABLE_VCOM5S], [test "$enable_vcom5s" != "no"])
|
AM_CONDITIONAL([ENABLE_VCOM5S], [test "$enable_vcom5s" != "no"])
|
||||||
AM_CONDITIONAL([ENABLE_URU4000], [test "$enable_uru4000" != "no"])
|
AM_CONDITIONAL([ENABLE_URU4000], [test "$enable_uru4000" != "no"])
|
||||||
#AM_CONDITIONAL([ENABLE_FDU2000], [test "$enable_fdu2000" != "no"])
|
#AM_CONDITIONAL([ENABLE_FDU2000], [test "$enable_fdu2000" != "no"])
|
||||||
#AM_CONDITIONAL([ENABLE_AES1610], [test "$enable_aes1610" != "no"])
|
AM_CONDITIONAL([ENABLE_AES1610], [test "$enable_aes1610" != "no"])
|
||||||
AM_CONDITIONAL([ENABLE_AES2501], [test "$enable_aes2501" != "no"])
|
AM_CONDITIONAL([ENABLE_AES2501], [test "$enable_aes2501" != "no"])
|
||||||
AM_CONDITIONAL([ENABLE_AES4000], [test "$enable_aes4000" != "no"])
|
AM_CONDITIONAL([ENABLE_AES4000], [test "$enable_aes4000" != "no"])
|
||||||
AM_CONDITIONAL([REQUIRE_AESLIB], [test "$require_aeslib" != "no"])
|
AM_CONDITIONAL([REQUIRE_AESLIB], [test "$require_aeslib" != "no"])
|
||||||
|
|
|
@ -100,9 +100,9 @@ endif
|
||||||
#DRIVER_SRC += $(FDU2000_SRC)
|
#DRIVER_SRC += $(FDU2000_SRC)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if ENABLE_AES1610
|
if ENABLE_AES1610
|
||||||
#DRIVER_SRC += $(AES1610_SRC)
|
DRIVER_SRC += $(AES1610_SRC)
|
||||||
#endif
|
endif
|
||||||
|
|
||||||
if ENABLE_AES2501
|
if ENABLE_AES2501
|
||||||
DRIVER_SRC += $(AES2501_SRC)
|
DRIVER_SRC += $(AES2501_SRC)
|
||||||
|
|
|
@ -361,11 +361,11 @@ static struct fp_img_driver * const img_drivers[] = {
|
||||||
#ifdef ENABLE_UPEKSONLY
|
#ifdef ENABLE_UPEKSONLY
|
||||||
&upeksonly_driver,
|
&upeksonly_driver,
|
||||||
#endif
|
#endif
|
||||||
/*
|
|
||||||
#ifdef ENABLE_AES1610
|
#ifdef ENABLE_AES1610
|
||||||
&aes1610_driver,
|
&aes1610_driver,
|
||||||
#endif
|
#endif
|
||||||
#ifdef ENABLE_UPEKTC
|
/*#ifdef ENABLE_UPEKTC
|
||||||
&upektc_driver,
|
&upektc_driver,
|
||||||
#endif
|
#endif
|
||||||
#ifdef ENABLE_FDU2000
|
#ifdef ENABLE_FDU2000
|
||||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue