diff options
author | Jagan Teki <jagan@amarulasolutions.com> | 2020-05-01 23:44:18 +0530 |
---|---|---|
committer | Jagan Teki <jagan@amarulasolutions.com> | 2020-05-11 01:30:49 +0530 |
commit | 5a2b6778fac98f2cb9ee1e7e6b98cd88d18dcbb9 (patch) | |
tree | a4586aad0060e62cfefc9af09e42c27c9ea945b8 /drivers | |
parent | cd3e01b14f34bcfb69927dc246c1de792c784468 (diff) | |
download | u-boot-5a2b6778fac98f2cb9ee1e7e6b98cd88d18dcbb9.zip u-boot-5a2b6778fac98f2cb9ee1e7e6b98cd88d18dcbb9.tar.gz u-boot-5a2b6778fac98f2cb9ee1e7e6b98cd88d18dcbb9.tar.bz2 |
phy: Use _nodev naming convention if non-device clients
Clients that are requesting some of uclass API's
without a device (with ofnode) usually have _nodev
naming convention.
- clk_get_by_index_nodev
- clk_get_by_name_nodev
- reset_get_by_index_nodev
- gpio_request_by_name_nodev
So, update the same naming convention PHY framework.
This doesn't change the existing functionality.
Cc: Neil Armstrong <narmstrong@baylibre.com>
Cc: Tom Rini <trini@konsulko.com>
Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/phy/phy-uclass.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/phy/phy-uclass.c b/drivers/phy/phy-uclass.c index 6ab7844..1fded5e 100644 --- a/drivers/phy/phy-uclass.c +++ b/drivers/phy/phy-uclass.c @@ -32,7 +32,7 @@ static int generic_phy_xlate_offs_flags(struct phy *phy, return 0; } -int generic_phy_get_by_node(ofnode node, int index, struct phy *phy) +int generic_phy_get_by_index_nodev(ofnode node, int index, struct phy *phy) { struct ofnode_phandle_args args; struct phy_ops *ops; @@ -94,7 +94,7 @@ err: int generic_phy_get_by_index(struct udevice *dev, int index, struct phy *phy) { - return generic_phy_get_by_node(dev_ofnode(dev), index, phy); + return generic_phy_get_by_index_nodev(dev_ofnode(dev), index, phy); } int generic_phy_get_by_name(struct udevice *dev, const char *phy_name, |