Commit 9a8e0a51 authored by YueHaibing's avatar YueHaibing Committed by Herbert Xu

crypto: picoxcell - 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>
Acked-by: default avatarJamie Iles <jamie@jamieiles.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent b26120fd
...@@ -1624,7 +1624,7 @@ MODULE_DEVICE_TABLE(of, spacc_of_id_table); ...@@ -1624,7 +1624,7 @@ MODULE_DEVICE_TABLE(of, spacc_of_id_table);
static int spacc_probe(struct platform_device *pdev) static int spacc_probe(struct platform_device *pdev)
{ {
int i, err, ret; int i, err, ret;
struct resource *mem, *irq; struct resource *irq;
struct device_node *np = pdev->dev.of_node; struct device_node *np = pdev->dev.of_node;
struct spacc_engine *engine = devm_kzalloc(&pdev->dev, sizeof(*engine), struct spacc_engine *engine = devm_kzalloc(&pdev->dev, sizeof(*engine),
GFP_KERNEL); GFP_KERNEL);
...@@ -1653,8 +1653,7 @@ static int spacc_probe(struct platform_device *pdev) ...@@ -1653,8 +1653,7 @@ static int spacc_probe(struct platform_device *pdev)
engine->name = dev_name(&pdev->dev); engine->name = dev_name(&pdev->dev);
mem = platform_get_resource(pdev, IORESOURCE_MEM, 0); engine->regs = devm_platform_ioremap_resource(pdev, 0);
engine->regs = devm_ioremap_resource(&pdev->dev, mem);
if (IS_ERR(engine->regs)) if (IS_ERR(engine->regs))
return PTR_ERR(engine->regs); return PTR_ERR(engine->regs);
......
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