mirror of
https://github.com/torvalds/linux.git
synced 2025-11-02 17:49:03 +02:00
misc: xilinx_tmr_manager: 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> Reviewed-by: Michal Simek <michal.simek@amd.com> Link: https://lore.kernel.org/r/20230707024224.78907-3-frank.li@vivo.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
190d1f2264
commit
3905841967
1 changed files with 1 additions and 2 deletions
|
|
@ -170,8 +170,7 @@ static int xtmr_manager_probe(struct platform_device *pdev)
|
|||
if (!xtmr_manager)
|
||||
return -ENOMEM;
|
||||
|
||||
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
||||
xtmr_manager->regs = devm_ioremap_resource(&pdev->dev, res);
|
||||
xtmr_manager->regs = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
|
||||
if (IS_ERR(xtmr_manager->regs))
|
||||
return PTR_ERR(xtmr_manager->regs);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue