drivers: phy: Fix memory leak
authorSachin Kamat <sachin.kamat@linaro.org>
Fri, 6 Dec 2013 12:21:18 +0000 (17:51 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 10 Dec 2013 20:53:30 +0000 (12:53 -0800)
'phy' was not being freed upon error in one of the cases.
Adjust the 'goto's to fix this.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/phy/phy-core.c

index 03cf8fb815543537fb14995fde36a5216706dab9..712b358a5756d1de89f84a64679ce996684d6129 100644 (file)
@@ -453,7 +453,7 @@ struct phy *phy_create(struct device *dev, const struct phy_ops *ops,
        if (id < 0) {
                dev_err(dev, "unable to get id\n");
                ret = id;
-               goto err0;
+               goto err1;
        }
 
        device_initialize(&phy->dev);
@@ -468,11 +468,11 @@ struct phy *phy_create(struct device *dev, const struct phy_ops *ops,
 
        ret = dev_set_name(&phy->dev, "phy-%s.%d", dev_name(dev), id);
        if (ret)
-               goto err1;
+               goto err2;
 
        ret = device_add(&phy->dev);
        if (ret)
-               goto err1;
+               goto err2;
 
        if (pm_runtime_enabled(dev)) {
                pm_runtime_enable(&phy->dev);
@@ -481,11 +481,11 @@ struct phy *phy_create(struct device *dev, const struct phy_ops *ops,
 
        return phy;
 
-err1:
+err2:
        ida_remove(&phy_ida, phy->id);
        put_device(&phy->dev);
+err1:
        kfree(phy);
-
 err0:
        return ERR_PTR(ret);
 }