diff options
author | Sergei Shtylyov <sergei.shtylyov@cogentembedded.com> | 2020-06-13 22:18:34 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2020-06-16 00:38:38 +0100 |
commit | eb8d6d464a27850498dced21a8450e85d4a02009 (patch) | |
tree | c99cd89a3a6f31863a2f194161575d4ea27fa2bf /drivers/spi/Makefile | |
parent | 064e8af7159539fc2310870841e7f215b4f633e9 (diff) | |
download | linux-stable-eb8d6d464a27850498dced21a8450e85d4a02009.tar.gz linux-stable-eb8d6d464a27850498dced21a8450e85d4a02009.tar.bz2 linux-stable-eb8d6d464a27850498dced21a8450e85d4a02009.zip |
spi: add Renesas RPC-IF driver
Add the SPI driver for the Renesas RPC-IF. It's the "front end" driver
using the "back end" APIs in the main driver to talk to the real hardware.
We only implement the 'spi-mem' interface -- there's no need to implement
the usual SPI driver methods...
Based on the original patch by Mason Yang <masonccyang@mxic.com.tw>.
Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Link: https://lore.kernel.org/r/1ece0e6c-71af-f0f1-709e-571f4b0b4853@cogentembedded.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/spi/Makefile')
-rw-r--r-- | drivers/spi/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/spi/Makefile b/drivers/spi/Makefile index d2e41d3d464a..44cdd1e40183 100644 --- a/drivers/spi/Makefile +++ b/drivers/spi/Makefile @@ -92,6 +92,7 @@ obj-$(CONFIG_SPI_QCOM_QSPI) += spi-qcom-qspi.o obj-$(CONFIG_SPI_QUP) += spi-qup.o obj-$(CONFIG_SPI_ROCKCHIP) += spi-rockchip.o obj-$(CONFIG_SPI_RB4XX) += spi-rb4xx.o +obj-$(CONFIG_SPI_RPCIF) += spi-rpc-if.o obj-$(CONFIG_SPI_RSPI) += spi-rspi.o obj-$(CONFIG_SPI_S3C24XX) += spi-s3c24xx-hw.o spi-s3c24xx-hw-y := spi-s3c24xx.o |