mirror of
https://github.com/torvalds/linux.git
synced 2024-11-28 07:01:32 +00:00
3194c68701
Implement firmware download protocol for Marvell NFC controllers. This protocol is based on NCI frames that's why parts of its implementation use some NCI generic functions. Signed-off-by: Vincent Cuissard <cuissard@marvell.com> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
13 lines
255 B
Makefile
13 lines
255 B
Makefile
#
|
|
# Makefile for NFCMRVL NCI based NFC driver
|
|
#
|
|
|
|
nfcmrvl-y += main.o fw_dnld.o
|
|
obj-$(CONFIG_NFC_MRVL) += nfcmrvl.o
|
|
|
|
nfcmrvl_usb-y += usb.o
|
|
obj-$(CONFIG_NFC_MRVL_USB) += nfcmrvl_usb.o
|
|
|
|
nfcmrvl_uart-y += uart.o
|
|
obj-$(CONFIG_NFC_MRVL_UART) += nfcmrvl_uart.o
|