提交 2273f42d 编写于 作者: W weiyongjun \(A\) 提交者: Herbert Xu

hwrng: exynos - remove redundant dev_err call in exynos_trng_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: NWei Yongjun <weiyongjun1@huawei.com>
Reviewed-by: NKrzysztof Kozlowski <krzk@kernel.org>
Acked-by: NŁukasz Stelmach <l.stelmach@samsung.com>
Signed-off-by: NHerbert Xu <herbert@gondor.apana.org.au>
上级 a8bc71d4
......@@ -129,10 +129,8 @@ static int exynos_trng_probe(struct platform_device *pdev)
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
trng->mem = devm_ioremap_resource(&pdev->dev, res);
if (IS_ERR(trng->mem)) {
dev_err(&pdev->dev, "Could not map IO resources.\n");
if (IS_ERR(trng->mem))
return PTR_ERR(trng->mem);
}
pm_runtime_enable(&pdev->dev);
ret = pm_runtime_get_sync(&pdev->dev);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册