Skip to content

Commit

Permalink
phy: core: Fix of_phy_provider_lookup to return PHY provider for sub …
Browse files Browse the repository at this point in the history
…node

Fixed of_phy_provider_lookup to return 'phy_provider' if _of_phy_get
passes the node pointer of the sub-node of phy provider node. This is
needed when phy provider implements multiple PHYs and each PHY is
modelled as the sub-node of PHY provider device node.

Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
Acked-by: Lee Jones <lee.jones@linaro.org>
  • Loading branch information
Kishon Vijay Abraham I committed Jul 22, 2014
1 parent 6e58240 commit 2a4c370
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions drivers/phy/phy-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,15 @@ static struct phy *phy_lookup(struct device *device, const char *port)
static struct phy_provider *of_phy_provider_lookup(struct device_node *node)
{
struct phy_provider *phy_provider;
struct device_node *child;

list_for_each_entry(phy_provider, &phy_provider_list, list) {
if (phy_provider->dev->of_node == node)
return phy_provider;

for_each_child_of_node(phy_provider->dev->of_node, child)
if (child == node)
return phy_provider;
}

return ERR_PTR(-EPROBE_DEFER);
Expand Down

0 comments on commit 2a4c370

Please sign in to comment.