Commit 654993b3 authored by Matthias Schiffer's avatar Matthias Schiffer Committed by Ulf Hansson
Browse files

mmc: sdhci_am654: Use dev_err_probe() for mmc_of_parse() return code

parent dc4e9e2a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -836,7 +836,7 @@ static int sdhci_am654_probe(struct platform_device *pdev)

	ret = mmc_of_parse(host->mmc);
	if (ret) {
		dev_err(dev, "parsing dt failed (%d)\n", ret);
		dev_err_probe(dev, ret, "parsing dt failed\n");
		goto pm_runtime_put;
	}