mirror of
https://github.com/torvalds/linux.git
synced 2024-11-06 03:51:48 +00:00
97f18414af
The driver now has all HCI stuff isolated in one file, and all the hardware link specifics in another. Writing a pn544 driver on top of another hardware link is now just a matter of adding a new file for that new hardware specifics. Signed-off-by: Eric Lapuyade <eric.lapuyade@intel.com> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
10 lines
186 B
Makefile
10 lines
186 B
Makefile
#
|
|
# Makefile for nfc devices
|
|
#
|
|
|
|
obj-$(CONFIG_PN544_HCI_NFC) += pn544/
|
|
obj-$(CONFIG_NFC_PN533) += pn533.o
|
|
obj-$(CONFIG_NFC_WILINK) += nfcwilink.o
|
|
|
|
ccflags-$(CONFIG_NFC_DEBUG) := -DDEBUG
|