diff options
author | David S. Miller <davem@davemloft.net> | 2016-11-17 12:05:05 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-11-17 12:05:05 -0500 |
commit | 30563f933a27eb9f9391a0e531dffde5182e422a (patch) | |
tree | 381af7ec4c3b40e0955f9cb8fcf42f3a7a1eb0d5 /drivers/net | |
parent | cfc44a4d147ea605d66ccb917cc24467d15ff867 (diff) | |
parent | 13c9d934a5a1d04f055c20c2253090e9afd9a5d1 (diff) |
Merge branch 'phy-dev-leaks'
Johan Hovold says:
====================
net: phy: fix of_node and device leaks
These patches fix a couple of of_node leaks in the fixed-link code and a
device reference leak in a phy helper.
====================
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/phy/fixed_phy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/phy/fixed_phy.c b/drivers/net/phy/fixed_phy.c index c649c101bbab..eb5167210681 100644 --- a/drivers/net/phy/fixed_phy.c +++ b/drivers/net/phy/fixed_phy.c @@ -279,7 +279,7 @@ EXPORT_SYMBOL_GPL(fixed_phy_register); void fixed_phy_unregister(struct phy_device *phy) { phy_device_remove(phy); - + of_node_put(phy->mdio.dev.of_node); fixed_phy_del(phy->mdio.addr); } EXPORT_SYMBOL_GPL(fixed_phy_unregister); |