This patch remove mmc_of_parse and check return value of sdhci_get_of_property. Cc: Michal Simek <michal.simek@xxxxxxxxxx> Cc: soren.brinkmann@xxxxxxxxxx Signed-off-by: Shawn Lin <shawn.lin@xxxxxxxxxxxxxx> --- drivers/mmc/host/sdhci-of-arasan.c | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/drivers/mmc/host/sdhci-of-arasan.c b/drivers/mmc/host/sdhci-of-arasan.c index 75379cb..b653ec7 100644 --- a/drivers/mmc/host/sdhci-of-arasan.c +++ b/drivers/mmc/host/sdhci-of-arasan.c @@ -177,17 +177,14 @@ static int sdhci_arasan_probe(struct platform_device *pdev) host->quirks2 |= SDHCI_QUIRK2_HOST_NO_CMD23; } - sdhci_get_of_property(pdev); + ret = sdhci_get_of_property(pdev); + if (ret) + goto clk_disable_all; + pltfm_host = sdhci_priv(host); pltfm_host->priv = sdhci_arasan; pltfm_host->clk = clk_xin; - ret = mmc_of_parse(host->mmc); - if (ret) { - dev_err(&pdev->dev, "parsing dt failed (%u)\n", ret); - goto clk_disable_all; - } - ret = sdhci_add_host(host); if (ret) goto err_pltfm_free; -- 2.3.7 -- 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