diff options
author | Andrew Bresticker <abrestic@chromium.org> | 2014-08-14 18:45:27 +0200 |
---|---|---|
committer | Ulf Hansson <ulf.hansson@linaro.org> | 2014-09-09 13:59:03 +0200 |
commit | 0857c6912d5cd04d177473f2be38709f08982710 (patch) | |
tree | c06436294a88d10aac65f67525afea976015e890 /drivers/mmc/host/Kconfig | |
parent | sdhci : recompute timeout_clk when needed (diff) | |
download | linux-0857c6912d5cd04d177473f2be38709f08982710.tar.xz linux-0857c6912d5cd04d177473f2be38709f08982710.zip |
mmc: dw_mmc: Add dependency on DMA
The dw_mmc drivers rely on the DMA API, so update the Kconfig entry
to depend on HAS_DMA. Since the drivers should build on any platform
with DMA, allow the driver to compile tested on non-ARC/ARM platforms.
Signed-off-by: Andrew Bresticker <abrestic@chromium.org>
Reviewed-by: Alim Akhtar <alim.akhtar@samsung.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to '')
-rw-r--r-- | drivers/mmc/host/Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/mmc/host/Kconfig b/drivers/mmc/host/Kconfig index 58aedcc900d1..63766f72330e 100644 --- a/drivers/mmc/host/Kconfig +++ b/drivers/mmc/host/Kconfig @@ -579,7 +579,8 @@ config SDH_BFIN_MISSING_CMD_PULLUP_WORKAROUND config MMC_DW tristate "Synopsys DesignWare Memory Card Interface" - depends on ARC || ARM + depends on HAS_DMA + depends on ARC || ARM || COMPILE_TEST help This selects support for the Synopsys DesignWare Mobile Storage IP block, this provides host support for SD and MMC interfaces, in both |