40d69043fc
This patch introduces the CAIF HSI Protocol Driver for the CAIF Link Layer. This driver implements a platform driver to accommodate for a platform specific HSI devices. A general platform driver is not possible as there are no HSI side Kernel API defined. Signed-off-by: Sjur Brændeland <sjur.brandeland@stericsson.com> Signed-off-by: David S. Miller <davem@davemloft.net>
16 lines
391 B
Makefile
16 lines
391 B
Makefile
ccflags-$(CONFIG_CAIF_DEBUG) := -DDEBUG
|
|
|
|
# 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
|
|
|
|
# Shared memory
|
|
caif_shm-objs := caif_shmcore.o caif_shm_u5500.o
|
|
obj-$(CONFIG_CAIF_SHM) += caif_shm.o
|
|
|
|
# HSI interface
|
|
obj-$(CONFIG_CAIF_HSI) += caif_hsi.o
|