Kconfig 784 B

1234567891011121314151617181920212223242526272829
  1. config NFC_NCI
  2. depends on NFC
  3. tristate "NCI protocol support"
  4. default n
  5. help
  6. NCI (NFC Controller Interface) is a communication protocol between
  7. an NFC Controller (NFCC) and a Device Host (DH).
  8. Say Y here to compile NCI support into the kernel or say M to
  9. compile it as module (nci).
  10. config NFC_NCI_SPI
  11. depends on NFC_NCI && SPI
  12. select CRC_CCITT
  13. bool "NCI over SPI protocol support"
  14. default n
  15. help
  16. NCI (NFC Controller Interface) is a communication protocol between
  17. an NFC Controller (NFCC) and a Device Host (DH).
  18. Say yes if you use an NCI driver that requires SPI link layer.
  19. config NFC_NCI_UART
  20. depends on NFC_NCI && TTY
  21. tristate "NCI over UART protocol support"
  22. default n
  23. help
  24. Say yes if you use an NCI driver that requires UART link layer.