diff options
author | Yangtao Li <frank.li@vivo.com> | 2023-07-26 19:38:13 +0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2023-07-27 10:24:11 +0200 |
commit | 7f5094fae40546b6a242d0598edeaf2ad1de828d (patch) | |
tree | 472b03a66d1387145d0a6b69ef568ed836675b69 | |
parent | d64d7f919f563686bb56aa57c3e8c3bad8f2afc1 (diff) | |
download | linux-7f5094fae40546b6a242d0598edeaf2ad1de828d.tar.gz linux-7f5094fae40546b6a242d0598edeaf2ad1de828d.tar.bz2 linux-7f5094fae40546b6a242d0598edeaf2ad1de828d.zip |
usb: uhci-platform: 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-27-frank.li@vivo.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/usb/host/uhci-platform.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/usb/host/uhci-platform.c b/drivers/usb/host/uhci-platform.c index 71ca532fc086..3dec5dd3a0d5 100644 --- a/drivers/usb/host/uhci-platform.c +++ b/drivers/usb/host/uhci-platform.c @@ -91,8 +91,7 @@ static int uhci_hcd_platform_probe(struct platform_device *pdev) uhci = hcd_to_uhci(hcd); - res = platform_get_resource(pdev, IORESOURCE_MEM, 0); - hcd->regs = devm_ioremap_resource(&pdev->dev, res); + hcd->regs = devm_platform_get_and_ioremap_resource(pdev, 0, &res); if (IS_ERR(hcd->regs)) { ret = PTR_ERR(hcd->regs); goto err_rmr; |