Kconfig 641 B

12345678910111213141516171819202122
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. config NFC_S3FWRN5
  3. tristate
  4. select CRYPTO
  5. select CRYPTO_HASH
  6. help
  7. Core driver for Samsung S3FWRN5 NFC chip. Contains core utilities
  8. of chip. It's intended to be used by PHYs to avoid duplicating lots
  9. of common code.
  10. config NFC_S3FWRN5_I2C
  11. tristate "Samsung S3FWRN5 I2C support"
  12. depends on NFC_NCI && I2C
  13. select NFC_S3FWRN5
  14. default n
  15. help
  16. This module adds support for an I2C interface to the S3FWRN5 chip.
  17. Select this if your platform is using the I2C bus.
  18. To compile this driver as a module, choose m here. The module will
  19. be called s3fwrn5_i2c.ko.
  20. Say N if unsure.