Kconfig 805 B

12345678910111213141516171819202122232425262728293031323334
  1. #
  2. # NFC sybsystem configuration
  3. #
  4. menuconfig NFC
  5. depends on NET
  6. depends on RFKILL || !RFKILL
  7. tristate "NFC subsystem support"
  8. default n
  9. help
  10. Say Y here if you want to build support for NFC (Near field
  11. communication) devices.
  12. To compile this support as a module, choose M here: the module will
  13. be called nfc.
  14. config NFC_DIGITAL
  15. depends on NFC
  16. select CRC_CCITT
  17. select CRC_ITU_T
  18. tristate "NFC Digital Protocol stack support"
  19. default n
  20. help
  21. Say Y if you want to build NFC digital protocol stack support.
  22. This is needed by NFC chipsets whose firmware only implement
  23. the NFC analog layer.
  24. To compile this support as a module, choose M here: the module will
  25. be called nfc_digital.
  26. source "net/nfc/nci/Kconfig"
  27. source "net/nfc/hci/Kconfig"
  28. source "drivers/nfc/Kconfig"