Commit 49104893 authored by Yangtao Li's avatar Yangtao Li Committed by Linus Walleij
Browse files

pinctrl: ti: Convert to devm_platform_get_and_ioremap_resource()



Convert platform_get_resource(), devm_ioremap_resource() to a single
call to devm_platform_get_and_ioremap_resource(), as this is exactly
what this function does.

Signed-off-by: default avatarYangtao Li <frank.li@vivo.com>
Link: https://lore.kernel.org/r/20230704124742.9596-4-frank.li@vivo.com


Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 885b129f
Loading
Loading
Loading
Loading
+2 −9
Original line number Diff line number Diff line
@@ -849,19 +849,12 @@ static int ti_iodelay_probe(struct platform_device *pdev)
	iod->reg_data = match->data;

	/* So far We can assume there is only 1 bank of registers */
	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	if (!res) {
		dev_err(dev, "Missing MEM resource\n");
		ret = -ENODEV;
		goto exit_out;
	}

	iod->phys_base = res->start;
	iod->reg_base = devm_ioremap_resource(dev, res);
	iod->reg_base = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
	if (IS_ERR(iod->reg_base)) {
		ret = PTR_ERR(iod->reg_base);
		goto exit_out;
	}
	iod->phys_base = res->start;

	iod->regmap = devm_regmap_init_mmio(dev, iod->reg_base,
					    iod->reg_data->regmap_config);