mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 08:14:15 +08:00
clk: ti: Use 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/20230705065313.67043-10-frank.li@vivo.com Signed-off-by: Stephen Boyd <sboyd@kernel.org>
This commit is contained in:
parent
9b1cb9c83f
commit
183a1f1b23
@ -881,14 +881,10 @@ static int ti_adpll_probe(struct platform_device *pdev)
|
||||
dev_set_drvdata(d->dev, d);
|
||||
spin_lock_init(&d->lock);
|
||||
|
||||
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
||||
if (!res)
|
||||
return -ENODEV;
|
||||
d->pa = res->start;
|
||||
|
||||
d->iobase = devm_ioremap_resource(dev, res);
|
||||
d->iobase = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
|
||||
if (IS_ERR(d->iobase))
|
||||
return PTR_ERR(d->iobase);
|
||||
d->pa = res->start;
|
||||
|
||||
err = ti_adpll_init_registers(d);
|
||||
if (err)
|
||||
|
Loading…
Reference in New Issue
Block a user