mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
7427b370e0
kbuild test robot found following error: net/built-in.o: In function `nci_spi_send': >> spi.c:(.text+0x19a76f): undefined reference to `crc_ccitt' Add CRC_CCITT module to Kconfig to fix it Reported-by: kbuild test robot. Signed-off-by: Frederic Danis <frederic.danis@linux.intel.com> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
21 lines
609 B
Text
21 lines
609 B
Text
config NFC_NCI
|
|
depends on NFC
|
|
tristate "NCI protocol support"
|
|
default n
|
|
help
|
|
NCI (NFC Controller Interface) is a communication protocol between
|
|
an NFC Controller (NFCC) and a Device Host (DH).
|
|
|
|
Say Y here to compile NCI support into the kernel or say M to
|
|
compile it as module (nci).
|
|
|
|
config NFC_NCI_SPI
|
|
depends on NFC_NCI && SPI
|
|
select CRC_CCITT
|
|
bool "NCI over SPI protocol support"
|
|
default n
|
|
help
|
|
NCI (NFC Controller Interface) is a communication protocol between
|
|
an NFC Controller (NFCC) and a Device Host (DH).
|
|
|
|
Say yes if you use an NCI driver that requires SPI link layer.
|