Commit 3e3c97c6 authored by YueHaibing's avatar YueHaibing Committed by Herbert Xu

hwrng: exynos - use devm_platform_ioremap_resource() to simplify code

Use devm_platform_ioremap_resource() to simplify the code a bit.
This is detected by coccinelle.
Signed-off-by: default avatarYueHaibing <yuehaibing@huawei.com>
Acked-by: default avatarŁukasz Stelmach <l.stelmach@samsung.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 3e46bd34
...@@ -109,7 +109,6 @@ static int exynos_trng_init(struct hwrng *rng) ...@@ -109,7 +109,6 @@ static int exynos_trng_init(struct hwrng *rng)
static int exynos_trng_probe(struct platform_device *pdev) static int exynos_trng_probe(struct platform_device *pdev)
{ {
struct exynos_trng_dev *trng; struct exynos_trng_dev *trng;
struct resource *res;
int ret = -ENOMEM; int ret = -ENOMEM;
trng = devm_kzalloc(&pdev->dev, sizeof(*trng), GFP_KERNEL); trng = devm_kzalloc(&pdev->dev, sizeof(*trng), GFP_KERNEL);
...@@ -128,8 +127,7 @@ static int exynos_trng_probe(struct platform_device *pdev) ...@@ -128,8 +127,7 @@ static int exynos_trng_probe(struct platform_device *pdev)
platform_set_drvdata(pdev, trng); platform_set_drvdata(pdev, trng);
trng->dev = &pdev->dev; trng->dev = &pdev->dev;
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); trng->mem = devm_platform_ioremap_resource(pdev, 0);
trng->mem = devm_ioremap_resource(&pdev->dev, res);
if (IS_ERR(trng->mem)) if (IS_ERR(trng->mem))
return PTR_ERR(trng->mem); return PTR_ERR(trng->mem);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment