diff options
author | Tom Rini | 2022-07-01 09:13:58 -0400 |
---|---|---|
committer | Tom Rini | 2022-07-01 09:13:58 -0400 |
commit | 085fea0b65c0aab6962e4e62c0fd376e3c63a90e (patch) | |
tree | db7cb260380f2a72a20ae7f9ef07d693e799c6b0 /arch | |
parent | 33938636f0914983554238c983c7429f68224239 (diff) | |
parent | fdc55a6ba8309b688c9db6c3cf3f70ad7034c147 (diff) |
Merge tag 'u-boot-amlogic-20220701' of https://source.denx.de/u-boot/custodians/u-boot-amlogic
- search dtb for meson-axg-usb-ctrl on board axg
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-meson/board-axg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-meson/board-axg.c b/arch/arm/mach-meson/board-axg.c index 71ac65c636c..236ec815799 100644 --- a/arch/arm/mach-meson/board-axg.c +++ b/arch/arm/mach-meson/board-axg.c @@ -106,7 +106,7 @@ int board_usb_init(int index, enum usb_init_type init) /* find the usb glue node */ node = fdt_node_offset_by_compatible(blob, -1, - "amlogic,meson-gxl-usb-ctrl"); + "amlogic,meson-axg-usb-ctrl"); if (node < 0) { debug("Not found usb-control node\n"); return -ENODEV; @@ -192,7 +192,7 @@ int board_usb_cleanup(int index, enum usb_init_type init) /* find the usb glue node */ node = fdt_node_offset_by_compatible(blob, -1, - "amlogic,meson-gxl-usb-ctrl"); + "amlogic,meson-axg-usb-ctrl"); if (node < 0) { debug("Not found usb-control node\n"); return -ENODEV; |