1
0
Fork 0

pinctrl: baytrail: Use devm_platform_ioremap_resource()

Use the new helper that wraps the calls to platform_get_resource()
and devm_ioremap_resource() together.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: Mika Westerberg <mika.westerberg@linux.intel.com>
alistair/sunxi64-5.4-dsi
Andy Shevchenko 2019-07-03 17:44:20 +03:00
parent 5f9e832c13
commit 24025010d1
1 changed files with 1 additions and 3 deletions

View File

@ -1580,12 +1580,10 @@ static int byt_set_soc_data(struct byt_gpio *vg,
for (i = 0; i < soc_data->ncommunities; i++) {
struct byt_community *comm = vg->communities_copy + i;
struct resource *mem_rc;
*comm = vg->soc_data->communities[i];
mem_rc = platform_get_resource(vg->pdev, IORESOURCE_MEM, 0);
comm->reg_base = devm_ioremap_resource(&vg->pdev->dev, mem_rc);
comm->reg_base = devm_platform_ioremap_resource(vg->pdev, 0);
if (IS_ERR(comm->reg_base))
return PTR_ERR(comm->reg_base);
}