summaryrefslogtreecommitdiff
path: root/net/nfc/nci/Makefile
diff options
context:
space:
mode:
authorFrederic Danis <frederic.danis@linux.intel.com>2013-05-29 15:35:02 +0200
committerSamuel Ortiz <sameo@linux.intel.com>2013-06-14 13:44:03 +0200
commit8a00a61b0ef2bfd1b468dd20c0d0b1a94a8f7475 (patch)
tree04438ab0d31ae79e0970cc7f901dd5605a5f4ec1 /net/nfc/nci/Makefile
parenta395298c9c96748cbd6acee4cb9a5ba13fbb3ab8 (diff)
NFC: Add basic NCI over SPI
The NFC Forum defines a transport interface based on Serial Peripheral Interface (SPI) for the NFC Controller Interface (NCI). This module implements the SPI transport of NCI, calling SPI module directly to read/write data to NFC controller (NFCC). NFCC driver should provide functions performing device open and close. It should also provide functions asserting/de-asserting interruption to prevent TX/RX race conditions. NFCC driver can also fix a delay between transactions if needed by the hardware. 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/Makefile')
-rw-r--r--net/nfc/nci/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/net/nfc/nci/Makefile b/net/nfc/nci/Makefile
index cdb3a2e44471..7aeedc43187d 100644
--- a/net/nfc/nci/Makefile
+++ b/net/nfc/nci/Makefile
@@ -4,4 +4,6 @@
obj-$(CONFIG_NFC_NCI) += nci.o
-nci-objs := core.o data.o lib.o ntf.o rsp.o \ No newline at end of file
+nci-objs := core.o data.o lib.o ntf.o rsp.o
+
+nci-$(CONFIG_NFC_NCI_SPI) += spi.o