Commit 504db0f8 authored by YueHaibing's avatar YueHaibing Committed by Will Deacon

perf/arm-cci: 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>
Signed-off-by: default avatarWill Deacon <will@kernel.org>
parent 1c8d96b4
...@@ -1642,7 +1642,6 @@ static struct cci_pmu *cci_pmu_alloc(struct device *dev) ...@@ -1642,7 +1642,6 @@ static struct cci_pmu *cci_pmu_alloc(struct device *dev)
static int cci_pmu_probe(struct platform_device *pdev) static int cci_pmu_probe(struct platform_device *pdev)
{ {
struct resource *res;
struct cci_pmu *cci_pmu; struct cci_pmu *cci_pmu;
int i, ret, irq; int i, ret, irq;
...@@ -1650,8 +1649,7 @@ static int cci_pmu_probe(struct platform_device *pdev) ...@@ -1650,8 +1649,7 @@ static int cci_pmu_probe(struct platform_device *pdev)
if (IS_ERR(cci_pmu)) if (IS_ERR(cci_pmu))
return PTR_ERR(cci_pmu); return PTR_ERR(cci_pmu);
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); cci_pmu->base = devm_platform_ioremap_resource(pdev, 0);
cci_pmu->base = devm_ioremap_resource(&pdev->dev, res);
if (IS_ERR(cci_pmu->base)) if (IS_ERR(cci_pmu->base))
return -ENOMEM; return -ENOMEM;
......
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