Commit f78c7123 authored by YueHaibing's avatar YueHaibing Committed by Herbert Xu

crypto: img-hash - use devm_platform_ioremap_resource() to simplify code

Use devm_platform_ioremap_resource() to simplify the code a bit.
This is detected by coccinelle.
Reported-by: default avatarHulk Robot <hulkci@huawei.com>
Signed-off-by: default avatarYueHaibing <yuehaibing@huawei.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 6d1c0186
...@@ -958,9 +958,7 @@ static int img_hash_probe(struct platform_device *pdev) ...@@ -958,9 +958,7 @@ static int img_hash_probe(struct platform_device *pdev)
crypto_init_queue(&hdev->queue, IMG_HASH_QUEUE_LENGTH); crypto_init_queue(&hdev->queue, IMG_HASH_QUEUE_LENGTH);
/* Register bank */ /* Register bank */
hash_res = platform_get_resource(pdev, IORESOURCE_MEM, 0); hdev->io_base = devm_platform_ioremap_resource(pdev, 0);
hdev->io_base = devm_ioremap_resource(dev, hash_res);
if (IS_ERR(hdev->io_base)) { if (IS_ERR(hdev->io_base)) {
err = PTR_ERR(hdev->io_base); err = PTR_ERR(hdev->io_base);
dev_err(dev, "can't ioremap, returned %d\n", err); dev_err(dev, "can't ioremap, returned %d\n", err);
......
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