mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-09 14:43:16 +00:00
usb: isp1362-hcd: 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/20230726113816.888-13-frank.li@vivo.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
1c13321c0c
commit
a9ec284ba1
@ -2651,8 +2651,7 @@ static int isp1362_probe(struct platform_device *pdev)
|
||||
if (IS_ERR(addr_reg))
|
||||
return PTR_ERR(addr_reg);
|
||||
|
||||
data = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
||||
data_reg = devm_ioremap_resource(&pdev->dev, data);
|
||||
data_reg = devm_platform_get_and_ioremap_resource(pdev, 0, &data);
|
||||
if (IS_ERR(data_reg))
|
||||
return PTR_ERR(data_reg);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user