diff options
author | Sjur Braendeland <sjur.brandeland@stericsson.com> | 2010-06-29 07:08:21 (GMT) |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-06-29 07:08:21 (GMT) |
commit | 529d6dad5bc69de14cdd24831e2a14264e93daa4 (patch) | |
tree | a89d7b8cdd3692e96a64c5d7196bcefc9f1e7f24 /drivers/net/caif/Makefile | |
parent | 01eebb53a65996dfbfb892bf5eb21ae831fbe3a6 (diff) | |
download | linux-529d6dad5bc69de14cdd24831e2a14264e93daa4.tar.xz |
caif-driver: Add CAIF-SPI Protocol driver.
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>
Diffstat (limited to 'drivers/net/caif/Makefile')
-rw-r--r-- | drivers/net/caif/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/net/caif/Makefile b/drivers/net/caif/Makefile index e6d3ca0..3a11d61 100644 --- a/drivers/net/caif/Makefile +++ b/drivers/net/caif/Makefile @@ -4,3 +4,7 @@ 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 |