diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-08-01 00:28:13 (GMT) |
---|---|---|
committer | Chris Ball <cjb@laptop.org> | 2013-08-25 03:32:45 (GMT) |
commit | e33c2025c0c2f8a20054c3e031877ff595d1c31f (patch) | |
tree | d9132e1931e36647b230aff077b18954bed1229b | |
parent | 84532e33975bd8fc969c77c8a2a980df2ec096a5 (diff) | |
download | linux-e33c2025c0c2f8a20054c3e031877ff595d1c31f.tar.xz |
mmc: dw_mmc: add missing MFD_SYSCON dependency for SOCFPGA
Added missing MFD_SYSCON dependency for SOCFPGA in order to fix
the following link error.
drivers/mmc/host/dw_mmc-socfpga.c:49: undefined reference to `syscon_regmap_lookup_by_compatible'
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Acked-by: Jaehoon Chung <jh80.chung@samsung.com>
Acked-by: Seungwon Jeon <tgih.jun@samsung.com>
Signed-off-by: Chris Ball <cjb@laptop.org>
-rw-r--r-- | drivers/mmc/host/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/host/Kconfig b/drivers/mmc/host/Kconfig index 8a4c066..84102bc 100644 --- a/drivers/mmc/host/Kconfig +++ b/drivers/mmc/host/Kconfig @@ -569,7 +569,7 @@ config MMC_DW_EXYNOS config MMC_DW_SOCFPGA tristate "SOCFPGA specific extensions for Synopsys DW Memory Card Interface" - depends on MMC_DW + depends on MMC_DW && MFD_SYSCON select MMC_DW_PLTFM help This selects support for Altera SoCFPGA specific extensions to the |