Commit 995cad04 authored by Yang Li's avatar Yang Li Committed by Herbert Xu

crypto: aspeed - Use devm_platform_ioremap_resource()

Convert platform_get_resource(), devm_ioremap_resource() to a single
call to Use devm_platform_ioremap_resource(), as this is exactly
what this function does.
Signed-off-by: default avatarYang Li <yang.lee@linux.alibaba.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent c6ffae6e
...@@ -712,7 +712,6 @@ static int aspeed_acry_probe(struct platform_device *pdev) ...@@ -712,7 +712,6 @@ static int aspeed_acry_probe(struct platform_device *pdev)
{ {
struct aspeed_acry_dev *acry_dev; struct aspeed_acry_dev *acry_dev;
struct device *dev = &pdev->dev; struct device *dev = &pdev->dev;
struct resource *res;
int rc; int rc;
acry_dev = devm_kzalloc(dev, sizeof(struct aspeed_acry_dev), acry_dev = devm_kzalloc(dev, sizeof(struct aspeed_acry_dev),
...@@ -724,13 +723,11 @@ static int aspeed_acry_probe(struct platform_device *pdev) ...@@ -724,13 +723,11 @@ static int aspeed_acry_probe(struct platform_device *pdev)
platform_set_drvdata(pdev, acry_dev); platform_set_drvdata(pdev, acry_dev);
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); acry_dev->regs = devm_platform_ioremap_resource(pdev, 0);
acry_dev->regs = devm_ioremap_resource(dev, res);
if (IS_ERR(acry_dev->regs)) if (IS_ERR(acry_dev->regs))
return PTR_ERR(acry_dev->regs); return PTR_ERR(acry_dev->regs);
res = platform_get_resource(pdev, IORESOURCE_MEM, 1); acry_dev->acry_sram = devm_platform_ioremap_resource(pdev, 1);
acry_dev->acry_sram = devm_ioremap_resource(dev, res);
if (IS_ERR(acry_dev->acry_sram)) if (IS_ERR(acry_dev->acry_sram))
return PTR_ERR(acry_dev->acry_sram); return PTR_ERR(acry_dev->acry_sram);
......
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