Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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>

authored by

Yangtao Li and committed by
Greg Kroah-Hartman
39058419 190d1f22

+1 -2
+1 -2
drivers/misc/xilinx_tmr_manager.c
··· 170 170 if (!xtmr_manager) 171 171 return -ENOMEM; 172 172 173 - res = platform_get_resource(pdev, IORESOURCE_MEM, 0); 174 - xtmr_manager->regs = devm_ioremap_resource(&pdev->dev, res); 173 + xtmr_manager->regs = devm_platform_get_and_ioremap_resource(pdev, 0, &res); 175 174 if (IS_ERR(xtmr_manager->regs)) 176 175 return PTR_ERR(xtmr_manager->regs); 177 176