From: Kishon Vijay Abraham I Date: Fri, 27 Apr 2018 11:47:13 +0000 (+0530) Subject: mmc: sdhci-omap: Invoke sdhci_get_of_property to read sdhci dt properties X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=1d3a2220c2a1ab864caf4a64dee745d287089238;p=linux.git mmc: sdhci-omap: Invoke sdhci_get_of_property to read sdhci dt properties Invoke sdhci_get_of_property defined in sdhci-pltfm.c to read sdhci specific properties from dt node. Signed-off-by: Kishon Vijay Abraham I Acked-by: Adrian Hunter Acked-by: Tony Lindgren Signed-off-by: Ulf Hansson --- diff --git a/drivers/mmc/host/sdhci-omap.c b/drivers/mmc/host/sdhci-omap.c index b3dc7f1466e56..d5c1a9c71f956 100644 --- a/drivers/mmc/host/sdhci-omap.c +++ b/drivers/mmc/host/sdhci-omap.c @@ -893,6 +893,7 @@ static int sdhci_omap_probe(struct platform_device *pdev) host->ioaddr += offset; mmc = host->mmc; + sdhci_get_of_property(pdev); ret = mmc_of_parse(mmc); if (ret) goto err_pltfm_free;