mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-20 17:44:33 +08:00
6be88670fc
Add a module to the NXP-NCI driver to support NFC controllers with an I2C control interface, such as the NPC100. Signed-off-by: Clément Perrochaud <clement.perrochaud@effinnov.com> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
12 lines
224 B
Makefile
12 lines
224 B
Makefile
#
|
|
# Makefile for NXP-NCI NFC driver
|
|
#
|
|
|
|
nxp-nci-objs = core.o firmware.o
|
|
nxp-nci_i2c-objs = i2c.o
|
|
|
|
obj-$(CONFIG_NFC_NXP_NCI) += nxp-nci.o
|
|
obj-$(CONFIG_NFC_NXP_NCI_I2C) += nxp-nci_i2c.o
|
|
|
|
ccflags-$(CONFIG_NFC_DEBUG) := -DDEBUG
|