summaryrefslogtreecommitdiff
path: root/drivers/mmc/socfpga_dw_mmc.c
diff options
context:
space:
mode:
authorPatrick Bruenn <p.bruenn@beckhoff.com>2018-03-06 11:07:23 +0300
committerJaehoon Chung <jh80.chung@samsung.com>2018-05-08 07:12:33 +0300
commit55118ec90c316daed6a50e28da618de4545647b0 (patch)
tree1da5aa28e0898ff21c07cdd3776bc197d53c98b1 /drivers/mmc/socfpga_dw_mmc.c
parent72b5a0371d2586607c6c66df8438b734d2562658 (diff)
downloadu-boot-55118ec90c316daed6a50e28da618de4545647b0.tar.xz
dm: mmc: socfpga: call dwmci_probe()
On a socfpga_cyclone5 based board the SD card, was never powered up. For other dw_mmc based SoCs dwmci_probe() is called in the platform specific probe(). It seems this call is missing for socfpga_dw_mmc. With this change DWMCI_PWREN is set by dmwci_init(). Signed-off-by: Patrick Bruenn <p.bruenn@beckhoff.com> Reviewed-by: Jaehoon Chung <jh80.chung@samsung.com>
Diffstat (limited to 'drivers/mmc/socfpga_dw_mmc.c')
-rw-r--r--drivers/mmc/socfpga_dw_mmc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/socfpga_dw_mmc.c b/drivers/mmc/socfpga_dw_mmc.c
index fa0e449b21..d0a0362d7e 100644
--- a/drivers/mmc/socfpga_dw_mmc.c
+++ b/drivers/mmc/socfpga_dw_mmc.c
@@ -123,7 +123,7 @@ static int socfpga_dwmmc_probe(struct udevice *dev)
upriv->mmc = host->mmc;
host->mmc->dev = dev;
- return 0;
+ return dwmci_probe(dev);
}
static int socfpga_dwmmc_bind(struct udevice *dev)