mirror of
https://gitlab.freedesktop.org/libfprint/libfprint.git
synced 2025-12-24 21:50:17 +01:00
elan: Make 0c3d not rotate before assembling
This commit is contained in:
parent
5beac0ded7
commit
4fa199aeb4
1 changed files with 3 additions and 2 deletions
|
|
@ -31,9 +31,10 @@
|
||||||
#define ELAN_0907 (1 << 0)
|
#define ELAN_0907 (1 << 0)
|
||||||
#define ELAN_0C03 (1 << 1)
|
#define ELAN_0C03 (1 << 1)
|
||||||
#define ELAN_0C42 (1 << 2)
|
#define ELAN_0C42 (1 << 2)
|
||||||
|
#define ELAN_0C3D (1 << 3)
|
||||||
|
|
||||||
/* devices which don't require frame rotation before assembling */
|
/* devices which don't require frame rotation before assembling */
|
||||||
#define ELAN_NOT_ROTATED ELAN_0C03
|
#define ELAN_NOT_ROTATED (ELAN_0C03 | ELAN_0C3D)
|
||||||
|
|
||||||
/* min FW version that supports calibration */
|
/* min FW version that supports calibration */
|
||||||
#define ELAN_MIN_CALIBRATION_FW 0x0138
|
#define ELAN_MIN_CALIBRATION_FW 0x0138
|
||||||
|
|
@ -213,7 +214,7 @@ static const FpIdEntry elan_id_table[] = {
|
||||||
{.vid = ELAN_VEND_ID, .pid = 0x0c31, .driver_data = ELAN_ALL_DEV},
|
{.vid = ELAN_VEND_ID, .pid = 0x0c31, .driver_data = ELAN_ALL_DEV},
|
||||||
{.vid = ELAN_VEND_ID, .pid = 0x0c32, .driver_data = ELAN_ALL_DEV},
|
{.vid = ELAN_VEND_ID, .pid = 0x0c32, .driver_data = ELAN_ALL_DEV},
|
||||||
{.vid = ELAN_VEND_ID, .pid = 0x0c33, .driver_data = ELAN_ALL_DEV},
|
{.vid = ELAN_VEND_ID, .pid = 0x0c33, .driver_data = ELAN_ALL_DEV},
|
||||||
{.vid = ELAN_VEND_ID, .pid = 0x0c3d, .driver_data = ELAN_ALL_DEV},
|
{.vid = ELAN_VEND_ID, .pid = 0x0c3d, .driver_data = ELAN_0C3D},
|
||||||
{.vid = ELAN_VEND_ID, .pid = 0x0c42, .driver_data = ELAN_0C42},
|
{.vid = ELAN_VEND_ID, .pid = 0x0c42, .driver_data = ELAN_0C42},
|
||||||
{.vid = ELAN_VEND_ID, .pid = 0x0c4d, .driver_data = ELAN_ALL_DEV},
|
{.vid = ELAN_VEND_ID, .pid = 0x0c4d, .driver_data = ELAN_ALL_DEV},
|
||||||
{.vid = ELAN_VEND_ID, .pid = 0x0c4f, .driver_data = ELAN_ALL_DEV},
|
{.vid = ELAN_VEND_ID, .pid = 0x0c4f, .driver_data = ELAN_ALL_DEV},
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue