The device-tree documentation for the Arasan SDHCI controller already claims that it supports the standard MMC devicetree properties. Update the driver implementation accordingly by calling mmc_of_parse(). Signed-off-by: Lars-Peter Clausen <lars@xxxxxxxxxx> --- drivers/mmc/host/sdhci-of-arasan.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/drivers/mmc/host/sdhci-of-arasan.c b/drivers/mmc/host/sdhci-of-arasan.c index 21c0c08..538fd81 100644 --- a/drivers/mmc/host/sdhci-of-arasan.c +++ b/drivers/mmc/host/sdhci-of-arasan.c @@ -175,6 +175,10 @@ static int sdhci_arasan_probe(struct platform_device *pdev) } sdhci_get_of_property(pdev); + ret = mmc_of_parse(host->mmc); + if (ret) + goto clk_disable_all; + pltfm_host = sdhci_priv(host); pltfm_host->priv = sdhci_arasan; pltfm_host->clk = clk_xin; -- 1.8.0 -- To unsubscribe from this list: send the line "unsubscribe linux-mmc" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html