diff options
author | Bongsu Jeon <bongsu.jeon@samsung.com> | 2021-01-27 22:08:28 +0900 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2021-01-29 18:03:33 -0800 |
commit | e624e6c3e777fb3dfed036b9da4d433aee3608a5 (patch) | |
tree | 39181eb556ac6ef2259a0b48272793b79393a5e2 /drivers/nfc/Kconfig | |
parent | 8c22475148a8d3222be712bd02a74d7279d50daf (diff) | |
download | linux-e624e6c3e777fb3dfed036b9da4d433aee3608a5.tar.bz2 |
nfc: Add a virtual nci device driver
NCI virtual device simulates a NCI device to the user. It can be used to
validate the NCI module and applications. This driver supports
communication between the virtual NCI device and NCI module.
Signed-off-by: Bongsu Jeon <bongsu.jeon@samsung.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'drivers/nfc/Kconfig')
-rw-r--r-- | drivers/nfc/Kconfig | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/drivers/nfc/Kconfig b/drivers/nfc/Kconfig index 75c65d339018..288c6f1c6979 100644 --- a/drivers/nfc/Kconfig +++ b/drivers/nfc/Kconfig @@ -49,6 +49,17 @@ config NFC_PORT100 If unsure, say N. +config NFC_VIRTUAL_NCI + tristate "NCI device simulator driver" + depends on NFC_NCI + help + NCI virtual device simulates a NCI device to the user. + It can be used to validate the NCI module and applications. + This driver supports communication between the virtual NCI device and + module. + + If unsure, say N. + source "drivers/nfc/fdp/Kconfig" source "drivers/nfc/pn544/Kconfig" source "drivers/nfc/pn533/Kconfig" |