From: Fabio Estevam <[email protected]>

Using devm_ioremap_resource() can make the code simpler, as it
already does the resource NULL check.

Signed-off-by: Fabio Estevam <[email protected]>
---
 drivers/usb/phy/phy-qcom-8x16-usb.c | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/drivers/usb/phy/phy-qcom-8x16-usb.c 
b/drivers/usb/phy/phy-qcom-8x16-usb.c
index b6a83a5..679afea 100644
--- a/drivers/usb/phy/phy-qcom-8x16-usb.c
+++ b/drivers/usb/phy/phy-qcom-8x16-usb.c
@@ -270,12 +270,9 @@ static int phy_8x16_probe(struct platform_device *pdev)
        platform_set_drvdata(pdev, qphy);
 
        res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-       if (!res)
-               return -EINVAL;
-
-       qphy->regs = devm_ioremap(&pdev->dev, res->start, resource_size(res));
-       if (!qphy->regs)
-               return -ENOMEM;
+       qphy->regs = devm_ioremap_resource(&pdev->dev, res);
+       if (IS_ERR(qphy->regs))
+               return PTR_ERR(qphy->regs);
 
        phy                     = &qphy->phy;
        phy->dev                = &pdev->dev;
-- 
2.7.4

--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to