mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
11f54f2286
According to the NCI specification, one can use HCI over NCI to talk with specific NFCEE. The HCI network is viewed as one logical NFCEE. This is needed to support secure element running HCI only firmwares embedded on an NCI capable chipset, like e.g. the st21nfcb. There is some duplication between this piece of code and the HCI core code, but the latter would need to be abstracted even more to be able to use NCI as a logical transport for HCP packets. Signed-off-by: Christophe Ricard <christophe-h.ricard@st.com> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
9 lines
163 B
Makefile
9 lines
163 B
Makefile
#
|
|
# Makefile for the Linux NFC NCI layer.
|
|
#
|
|
|
|
obj-$(CONFIG_NFC_NCI) += nci.o
|
|
|
|
nci-objs := core.o data.o lib.o ntf.o rsp.o hci.o
|
|
|
|
nci-$(CONFIG_NFC_NCI_SPI) += spi.o
|