diff options
author | Mark Brown <broonie@linaro.org> | 2013-07-05 18:37:51 (GMT) |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-07-15 10:34:00 (GMT) |
commit | 838af505843ca6277b47816e284001dbe7875386 (patch) | |
tree | 2e5eef468a4d47d1463e6d867abaa76e422c32be /drivers/spi/Kconfig | |
parent | ad81f0545ef01ea651886dddac4bef6cec930092 (diff) | |
download | linux-838af505843ca6277b47816e284001dbe7875386.tar.xz |
spi/rspi: Add missing dependency on DMAE
The filter function used by the rspi driver is part of the DMAE controller
driver so if the DMA controller driver is somehow disabled then the rspi
driver will fail to build.
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'drivers/spi/Kconfig')
-rw-r--r-- | drivers/spi/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/Kconfig b/drivers/spi/Kconfig index 89cbbab..175491f 100644 --- a/drivers/spi/Kconfig +++ b/drivers/spi/Kconfig @@ -341,7 +341,7 @@ config SPI_PXA2XX_PCI config SPI_RSPI tristate "Renesas RSPI controller" - depends on SUPERH + depends on SUPERH && SH_DMAE_BASE help SPI driver for Renesas RSPI blocks. |