From 61c6c24958934b6b226aa37b3b3a2c089189f52b Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Thu, 12 Jan 2017 09:51:18 +0100 Subject: mci: imx-esdhc: Enable clock For architectures which do not enable all clocks during initialization. Signed-off-by: Sascha Hauer --- drivers/mci/imx-esdhc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/mci/imx-esdhc.c b/drivers/mci/imx-esdhc.c index ad749d9a30..19d11a5a33 100644 --- a/drivers/mci/imx-esdhc.c +++ b/drivers/mci/imx-esdhc.c @@ -630,6 +630,7 @@ static int fsl_esdhc_probe(struct device_d *dev) host->clk = clk_get(dev, "per"); if (IS_ERR(host->clk)) return PTR_ERR(host->clk); + clk_enable(host->clk); ret = clk_enable(host->clk); if (ret) { -- cgit v1.2.3