feat: Add support for Goodix device 0x27C6:0x6984

It includes autosuspend configuration.
This commit is contained in:
Harshith Goka
2026-02-12 03:37:05 +09:00
committed by Marco Trevisan (Treviño)
parent 20f5ce682e
commit e43137c760
2 changed files with 3 additions and 0 deletions
+1
View File
@@ -248,6 +248,7 @@ usb:v27C6p6512*
usb:v27C6p6890* usb:v27C6p6890*
usb:v27C6p689A* usb:v27C6p689A*
usb:v27C6p66A9* usb:v27C6p66A9*
usb:v27C6p6984*
ID_AUTOSUSPEND=1 ID_AUTOSUSPEND=1
ID_PERSIST=0 ID_PERSIST=0
+2
View File
@@ -1439,6 +1439,7 @@ gx_fp_probe (FpDevice *device)
case 0x6A94: case 0x6A94:
case 0x659A: case 0x659A:
case 0x6890: case 0x6890:
case 0x6984:
self->max_enroll_stage = 12; self->max_enroll_stage = 12;
break; break;
@@ -1701,6 +1702,7 @@ static const FpIdEntry id_table[] = {
{ .vid = 0x27c6, .pid = 0x6890, }, { .vid = 0x27c6, .pid = 0x6890, },
{ .vid = 0x27c6, .pid = 0x689A, }, { .vid = 0x27c6, .pid = 0x689A, },
{ .vid = 0x27c6, .pid = 0x66A9, }, { .vid = 0x27c6, .pid = 0x66A9, },
{ .vid = 0x27c6, .pid = 0x6984, },
{ .vid = 0, .pid = 0, .driver_data = 0 }, /* terminating entry */ { .vid = 0, .pid = 0, .driver_data = 0 }, /* terminating entry */
}; };