-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: ShivamKumarJha <[email protected]>
- Loading branch information
1 parent
8b32b65
commit c2ac887
Showing
43 changed files
with
16,439 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# | ||
# Fingerprint driver configuration | ||
# | ||
menuconfig INPUT_FINGERPRINT | ||
bool "Fingerprints" | ||
help | ||
Say Y here, and a list of supported fingerprints will be displayed. | ||
This option doesn't affect the kernel. | ||
|
||
If unsure, say Y. | ||
|
||
if INPUT_FINGERPRINT | ||
|
||
source "drivers/input/fingerprint/fpc_tee/Kconfig" | ||
source "drivers/input/fingerprint/fpc_fod/Kconfig" | ||
source "drivers/input/fingerprint/goodix_ta/Kconfig" | ||
source "drivers/input/fingerprint/goodix_fod/Kconfig" | ||
source "drivers/input/fingerprint/fs_tee/Kconfig" | ||
|
||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# | ||
# Makefile for the fingerprint drivers. | ||
# | ||
|
||
# Each configuration option enables a list of files. | ||
|
||
obj-$(CONFIG_FINGERPRINT_GOODIX_TA) += goodix_ta/ | ||
obj-$(CONFIG_FINGERPRINT_FPC_FOD) += fpc_fod/ | ||
obj-$(CONFIG_FINGERPRINT_FPC_TEE) += fpc_tee/ | ||
obj-$(CONFIG_FINGERPRINT_GOODIX_FOD) += goodix_fod/ | ||
obj-$(CONFIG_FINGERPRINT_FS_TEE) += fs_tee/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# | ||
# FPC sensors | ||
# | ||
|
||
config FINGERPRINT_FPC_FOD | ||
tristate "FPC1020 fingerprint sensor IRQ support" | ||
depends on INPUT_FINGERPRINT | ||
help | ||
If you say yes here you get IRQ support for the FPC1020 family | ||
of fingerprint sensors from Fingerprint Cards (FPC). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
obj-$(CONFIG_FINGERPRINT_FPC_FOD) += fpc1020_platform_tee.o |
Oops, something went wrong.