mmc: sdhci-msm: Remove redundant dev_err call in sdhci_msm_probe()

There is a error message within devm_ioremap_resource
already, so remove the dev_err call to avoid redundant
error message.

Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
This commit is contained in:
weiyongjun (A) 2018-07-04 08:35:17 +00:00 committed by Ulf Hansson
parent 2061594c61
commit f01c3684cf
1 changed files with 0 additions and 1 deletions

View File

@ -1764,7 +1764,6 @@ static int sdhci_msm_probe(struct platform_device *pdev)
core_memres); core_memres);
if (IS_ERR(msm_host->core_mem)) { if (IS_ERR(msm_host->core_mem)) {
dev_err(&pdev->dev, "Failed to remap registers\n");
ret = PTR_ERR(msm_host->core_mem); ret = PTR_ERR(msm_host->core_mem);
goto clk_disable; goto clk_disable;
} }