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