mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 12:11:40 +00:00
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: Yangtao Li <frank.li@vivo.com> Link: https://lore.kernel.org/r/20230704124742.9596-4-frank.li@vivo.com Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
885b129f61
commit
49104893fe
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user