aboutsummaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorSergei Antonov2022-05-09 14:36:18 +0300
committerNeil Armstrong2022-05-23 10:40:01 +0200
commitfdc55a6ba8309b688c9db6c3cf3f70ad7034c147 (patch)
tree5db4d7ea190ed3195e58fbfd5ff7c7d5b7f059c0 /arch
parent6f00b97d7e5760d92566317dde6c4b9224790827 (diff)
meson: axg: search dtb for meson-axg-usb-ctrl on board axg
USB controller for AXG is described as meson-axg-usb-ctrl, see arch/arm/dts/meson-axg.dtsi Look for that name instead of meson-gxl-usb-ctrl. Signed-off-by: Sergei Antonov <saproj@gmail.com> Acked-by: Neil Armstrong <narmstrong@baylibre.com> Signed-off-by: Neil Armstrong <narmstrong@baylibre.com> Link: https://lore.kernel.org/r/20220509113618.2891126-1-saproj@gmail.com
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/mach-meson/board-axg.c4
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;