diff options
author | Frederic Danis <frederic.danis@linux.intel.com> | 2013-06-20 11:11:04 +0200 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2013-07-19 16:55:26 +0200 |
commit | 7427b370e0aa6226c763af94fc5c4e3433383543 (patch) | |
tree | b88c50f892705cee6a0a2725523776e51d7c3a96 /net/nfc/nci | |
parent | 64b6f46f1141ad938e354f37af62e28da972e8eb (diff) | |
download | op-kernel-dev-7427b370e0aa6226c763af94fc5c4e3433383543.zip op-kernel-dev-7427b370e0aa6226c763af94fc5c4e3433383543.tar.gz |
NFC: Fix NCI over SPI build
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>
Diffstat (limited to 'net/nfc/nci')
-rw-r--r-- | net/nfc/nci/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/nfc/nci/Kconfig b/net/nfc/nci/Kconfig index 2a24160..a4f1e42 100644 --- a/net/nfc/nci/Kconfig +++ b/net/nfc/nci/Kconfig @@ -11,6 +11,7 @@ config NFC_NCI config NFC_NCI_SPI depends on NFC_NCI && SPI + select CRC_CCITT bool "NCI over SPI protocol support" default n help |