Kconfig 705 B

12345678910111213141516171819202122232425262728293031
  1. #
  2. # Near Field Communication (NFC) devices
  3. #
  4. menuconfig NFC_DEVICES
  5. bool "Near Field Communication (NFC) devices"
  6. default n
  7. ---help---
  8. You'll have to say Y if your computer contains an NFC device that
  9. you want to use under Linux.
  10. You can say N here if you don't have any Near Field Communication
  11. devices connected to your computer.
  12. if NFC_DEVICES
  13. config PN544_NFC
  14. tristate "PN544 NFC driver"
  15. depends on I2C
  16. select CRC_CCITT
  17. default n
  18. ---help---
  19. Say yes if you want PN544 Near Field Communication driver.
  20. This is for i2c connected version. If unsure, say N here.
  21. To compile this driver as a module, choose m here. The module will
  22. be called pn544.
  23. endif # NFC_DEVICES