diff options
author | Arnd Bergmann <arnd@arndb.de> | 2015-01-28 08:27:06 -0500 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-01-28 12:37:16 -0500 |
commit | 75d30c51f8a841d4f40b76fb6ce23927f8f140cf (patch) | |
tree | 7d07837b7333fc2a36a72a1165a455849d387192 | |
parent | 97bf6af1f928216fd6c5a66e8a57bfa95a659672 (diff) |
spi: pl08x: do not select S3C64XX_PL080
The pl08x driver originally selected S3C64XX_PL080 to avoid having
the legacy Samsung DMA interfaces. Those are now gone, so the
select is no longer needed, but it now causes problems when
CONFIG_DMA_ENGINE is disabled:
arch/arm/plat-samsung/built-in.o: In function `s3c64xx_spi0_set_platdata':
:(.init.text+0x518): undefined reference to `pl08x_filter_id'
This simply removes the 'select' to avoid this problem.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | drivers/spi/Kconfig | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/spi/Kconfig b/drivers/spi/Kconfig index 99829985c1a1..d4020608bab6 100644 --- a/drivers/spi/Kconfig +++ b/drivers/spi/Kconfig | |||
@@ -460,7 +460,6 @@ config SPI_S3C24XX_FIQ | |||
460 | config SPI_S3C64XX | 460 | config SPI_S3C64XX |
461 | tristate "Samsung S3C64XX series type SPI" | 461 | tristate "Samsung S3C64XX series type SPI" |
462 | depends on (PLAT_SAMSUNG || ARCH_EXYNOS) | 462 | depends on (PLAT_SAMSUNG || ARCH_EXYNOS) |
463 | select S3C64XX_PL080 if ARCH_S3C64XX | ||
464 | help | 463 | help |
465 | SPI driver for Samsung S3C64XX and newer SoCs. | 464 | SPI driver for Samsung S3C64XX and newer SoCs. |
466 | 465 | ||