Commit 24025010 authored by Andy Shevchenko's avatar Andy Shevchenko
Browse files

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: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: default avatarMika Westerberg <mika.westerberg@linux.intel.com>
parent 5f9e832c
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -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);
	}