mirror of
https://github.com/torvalds/linux.git
synced 2024-11-18 01:51:53 +00:00
529d6dad5b
This patch introduces the CAIF SPI Protocol Driver for CAIF Link Layer. This driver implements a platform driver to accommodate for a platform specific SPI device. A general platform driver is not possible as there are no SPI Slave side Kernel API defined. A sample CAIF SPI Platform device can be found in .../Documentation/networking/caif/spi_porting.txt Signed-off-by: Sjur Braendeland <sjur.brandeland@stericsson.com> Signed-off-by: David S. Miller <davem@davemloft.net>
11 lines
254 B
Makefile
11 lines
254 B
Makefile
ifeq ($(CONFIG_CAIF_DEBUG),y)
|
|
EXTRA_CFLAGS += -DDEBUG
|
|
endif
|
|
|
|
# Serial interface
|
|
obj-$(CONFIG_CAIF_TTY) += caif_serial.o
|
|
|
|
# SPI slave physical interfaces module
|
|
cfspi_slave-objs := caif_spi.o caif_spi_slave.o
|
|
obj-$(CONFIG_CAIF_SPI_SLAVE) += cfspi_slave.o
|