7cbe0ff3e4
This driver declares two virtual NFC devices supporting NFC-DEP protocol. An LLCP connection can be established between them and all packets sent from one device is sent back to the other, acting as loopback devices. Once established, the LLCP link can be disconnected by disabling the target device (with rfkill, nfctool, or neard disable-adapter test script). Signed-off-by: Thierry Escande <thierry.escande@linux.intel.com> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
13 lines
299 B
Makefile
13 lines
299 B
Makefile
#
|
|
# Makefile for nfc devices
|
|
#
|
|
|
|
obj-$(CONFIG_NFC_PN544) += pn544/
|
|
obj-$(CONFIG_NFC_MICROREAD) += microread/
|
|
obj-$(CONFIG_NFC_PN533) += pn533.o
|
|
obj-$(CONFIG_NFC_WILINK) += nfcwilink.o
|
|
obj-$(CONFIG_NFC_MEI_PHY) += mei_phy.o
|
|
obj-$(CONFIG_NFC_SIM) += nfcsim.o
|
|
|
|
ccflags-$(CONFIG_NFC_DEBUG) := -DDEBUG
|