0001 # SPDX-License-Identifier: GPL-2.0-only
0002 #
0003 # NFC subsystem configuration
0004 #
0005
0006 menuconfig NFC
0007 depends on RFKILL || !RFKILL
0008 tristate "NFC subsystem support"
0009 default n
0010 help
0011 Say Y here if you want to build support for NFC (Near field
0012 communication) devices.
0013
0014 To compile this support as a module, choose M here: the module will
0015 be called nfc.
0016
0017 config NFC_DIGITAL
0018 depends on NFC
0019 select CRC_CCITT
0020 select CRC_ITU_T
0021 tristate "NFC Digital Protocol stack support"
0022 default n
0023 help
0024 Say Y if you want to build NFC digital protocol stack support.
0025 This is needed by NFC chipsets whose firmware only implement
0026 the NFC analog layer.
0027
0028 To compile this support as a module, choose M here: the module will
0029 be called nfc_digital.
0030
0031 source "net/nfc/nci/Kconfig"
0032 source "net/nfc/hci/Kconfig"
0033
0034 source "drivers/nfc/Kconfig"