diff options
author | Yangtao Li <frank.li@vivo.com> | 2023-07-26 19:38:11 +0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2023-07-27 10:24:10 +0200 |
commit | eeaf04a9cfb4572dfe8faaaeadde68c91798c35c (patch) | |
tree | decc0c5343ea4d181c0816aada93b3f9661fde30 /drivers/usb/host/ohci-spear.c | |
parent | e7ef16450031aaf21ec3915b42f2bb794dd6b07a (diff) | |
download | linux-eeaf04a9cfb4572dfe8faaaeadde68c91798c35c.tar.gz linux-eeaf04a9cfb4572dfe8faaaeadde68c91798c35c.tar.bz2 linux-eeaf04a9cfb4572dfe8faaaeadde68c91798c35c.zip |
usb: ohci-spear: 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-25-frank.li@vivo.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/host/ohci-spear.c')
-rw-r--r-- | drivers/usb/host/ohci-spear.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/usb/host/ohci-spear.c b/drivers/usb/host/ohci-spear.c index f4b2656407dd..993f347c5c28 100644 --- a/drivers/usb/host/ohci-spear.c +++ b/drivers/usb/host/ohci-spear.c @@ -68,8 +68,7 @@ static int spear_ohci_hcd_drv_probe(struct platform_device *pdev) goto fail; } - 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)) { retval = PTR_ERR(hcd->regs); goto err_put_hcd; |