Commit 237b668c authored by YueHaibing's avatar YueHaibing Committed by Greg Kroah-Hartman

usb: gadget: s3c-hsudc: use devm_platform_ioremap_resource() to simplify code

Use devm_platform_ioremap_resource() to simplify the code a bit.
This is detected by coccinelle.
Reported-by: default avatarHulk Robot <hulkci@huawei.com>
Signed-off-by: default avatarYueHaibing <yuehaibing@huawei.com>
Link: https://lore.kernel.org/r/20190904095022.24528-1-yuehaibing@huawei.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 3055c92c
...@@ -1263,7 +1263,6 @@ static const struct usb_gadget_ops s3c_hsudc_gadget_ops = { ...@@ -1263,7 +1263,6 @@ static const struct usb_gadget_ops s3c_hsudc_gadget_ops = {
static int s3c_hsudc_probe(struct platform_device *pdev) static int s3c_hsudc_probe(struct platform_device *pdev)
{ {
struct device *dev = &pdev->dev; struct device *dev = &pdev->dev;
struct resource *res;
struct s3c_hsudc *hsudc; struct s3c_hsudc *hsudc;
struct s3c24xx_hsudc_platdata *pd = dev_get_platdata(&pdev->dev); struct s3c24xx_hsudc_platdata *pd = dev_get_platdata(&pdev->dev);
int ret, i; int ret, i;
...@@ -1290,9 +1289,7 @@ static int s3c_hsudc_probe(struct platform_device *pdev) ...@@ -1290,9 +1289,7 @@ static int s3c_hsudc_probe(struct platform_device *pdev)
goto err_supplies; goto err_supplies;
} }
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); hsudc->regs = devm_platform_ioremap_resource(pdev, 0);
hsudc->regs = devm_ioremap_resource(&pdev->dev, res);
if (IS_ERR(hsudc->regs)) { if (IS_ERR(hsudc->regs)) {
ret = PTR_ERR(hsudc->regs); ret = PTR_ERR(hsudc->regs);
goto err_res; goto err_res;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment