aboutsummaryrefslogtreecommitdiff
path: root/arch/arm
diff options
context:
space:
mode:
authorJagan Teki <jagan@amarulasolutions.com>2020-05-01 23:44:18 +0530
committerJagan Teki <jagan@amarulasolutions.com>2020-05-11 01:30:49 +0530
commit5a2b6778fac98f2cb9ee1e7e6b98cd88d18dcbb9 (patch)
treea4586aad0060e62cfefc9af09e42c27c9ea945b8 /arch/arm
parentcd3e01b14f34bcfb69927dc246c1de792c784468 (diff)
downloadu-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 'arch/arm')
-rw-r--r--arch/arm/mach-meson/board-gx.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/mach-meson/board-gx.c b/arch/arm/mach-meson/board-gx.c
index 3da9901..b591c92 100644
--- a/arch/arm/mach-meson/board-gx.c
+++ b/arch/arm/mach-meson/board-gx.c
@@ -183,7 +183,8 @@ int board_usb_init(int index, enum usb_init_type init)
/* get the PHYs */
for (i = 0; i < 2; i++) {
- ret = generic_phy_get_by_node(dwc2_node, i, &usb_phys[i]);
+ ret = generic_phy_get_by_index_nodev(dwc2_node, i,
+ &usb_phys[i]);
if (ret && ret != -ENOENT) {
pr_err("Failed to get USB PHY%d for %s\n",
i, ofnode_get_name(dwc2_node));