Kconfig 845 B

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