From: weiyongjun \(A\) Date: Wed, 10 Jan 2018 13:30:59 +0000 (+0000) Subject: hwrng: exynos - remove redundant dev_err call in exynos_trng_probe() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=2273f42df1a52bb3aa827163e285528afbf7616c;p=linux.git 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: Wei Yongjun Reviewed-by: Krzysztof Kozlowski Acked-by: Ɓukasz Stelmach Signed-off-by: Herbert Xu --- diff --git a/drivers/char/hw_random/exynos-trng.c b/drivers/char/hw_random/exynos-trng.c index f4643e3ec3463..1947aed7c0443 100644 --- a/drivers/char/hw_random/exynos-trng.c +++ b/drivers/char/hw_random/exynos-trng.c @@ -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);