We can use the wrapper API here to save some lines and remove the need
for the 'base' and 'res' local variable.

Suggested-by: Bjorn Andersson <[email protected]>
Cc: Jeykumar Sankaran <[email protected]>
Cc: Chandan Uddaraju <[email protected]>
Cc: Vara Reddy <[email protected]>
Cc: Tanmay Shah <[email protected]>
Cc: Bjorn Andersson <[email protected]>
Cc: Manu Gautam <[email protected]>
Cc: Sandeep Maheswaram <[email protected]>
Cc: Douglas Anderson <[email protected]>
Cc: Sean Paul <[email protected]>
Cc: Jonathan Marek <[email protected]>
Cc: Dmitry Baryshkov <[email protected]>
Cc: Rob Clark <[email protected]>
Signed-off-by: Stephen Boyd <[email protected]>
---
 drivers/phy/qualcomm/phy-qcom-qmp.c | 11 +++--------
 1 file changed, 3 insertions(+), 8 deletions(-)

diff --git a/drivers/phy/qualcomm/phy-qcom-qmp.c 
b/drivers/phy/qualcomm/phy-qcom-qmp.c
index 215abd179e74..ecfcc97277f9 100644
--- a/drivers/phy/qualcomm/phy-qcom-qmp.c
+++ b/drivers/phy/qualcomm/phy-qcom-qmp.c
@@ -3235,10 +3235,8 @@ static int qcom_qmp_phy_probe(struct platform_device 
*pdev)
 {
        struct qcom_qmp *qmp;
        struct device *dev = &pdev->dev;
-       struct resource *res;
        struct device_node *child;
        struct phy_provider *phy_provider;
-       void __iomem *base;
        void __iomem *serdes;
        const struct qmp_phy_cfg *cfg;
        int num, id;
@@ -3256,13 +3254,10 @@ static int qcom_qmp_phy_probe(struct platform_device 
*pdev)
        if (!cfg)
                return -EINVAL;
 
-       res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-       base = devm_ioremap_resource(dev, res);
-       if (IS_ERR(base))
-               return PTR_ERR(base);
-
        /* per PHY serdes; usually located at base address */
-       serdes = base;
+       serdes = devm_platform_ioremap_resource(pdev, 0);
+       if (IS_ERR(serdes))
+               return PTR_ERR(serdes);
 
        /* per PHY dp_com; if PHY has dp_com control block */
        if (cfg->has_phy_dp_com_ctrl) {
-- 
Sent by a computer, using git, on the internet

Reply via email to