562d4d59b8
This adds support for the Sony NFC USB dongle RC-S380, based on the Port-100 chip. This dongle is an analog frontend and does not implement the digital layer. This driver uses the nfc_digital module which is an implementation of the NFC Digital Protocol stack. This patch is a skeleton. It only registers the dongle against the NFC digital protocol stack. All NFC digital operation functions are stubbed out. Signed-off-by: Thierry Escande <thierry.escande@linux.intel.com> Cc: Stephen Tiedemann <stephen.tiedemann@gmail.com> Tested-by: Cho, Yu-Chen <acho@suse.com> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
14 lines
338 B
Makefile
14 lines
338 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
|
|
obj-$(CONFIG_NFC_PORT100) += port100.o
|
|
|
|
ccflags-$(CONFIG_NFC_DEBUG) := -DDEBUG
|