mirror of
https://github.com/torvalds/linux.git
synced 2024-12-12 22:23:55 +00:00
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>
This commit is contained in:
parent
5f9e832c13
commit
24025010d1
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user