mirror of
https://github.com/torvalds/linux.git
synced 2024-11-04 11:04:38 +00:00
30cc458765
And stop making it optional. LLCP is a fundamental part of the NFC specifications and making it optional does not make much sense. Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
13 lines
259 B
Makefile
13 lines
259 B
Makefile
#
|
|
# Makefile for the Linux NFC subsystem.
|
|
#
|
|
|
|
obj-$(CONFIG_NFC) += nfc.o
|
|
obj-$(CONFIG_NFC_NCI) += nci/
|
|
obj-$(CONFIG_NFC_HCI) += hci/
|
|
#obj-$(CONFIG_NFC_LLCP) += llcp/
|
|
|
|
nfc-objs := core.o netlink.o af_nfc.o rawsock.o llcp_core.o llcp_commands.o \
|
|
llcp_sock.o
|
|
|