[PATCH] 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 --- arch/arm/mach-meson/board-axg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/arm/mach-meson/board-axg.c b/arch/arm/mach-meson/board-axg.c index 71ac65c636..236ec81579 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;

Hi Sergei,
On 09/05/2022 13:36, Sergei Antonov wrote:
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
arch/arm/mach-meson/board-axg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/arm/mach-meson/board-axg.c b/arch/arm/mach-meson/board-axg.c index 71ac65c636..236ec81579 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");
if (node < 0) { debug("Not found usb-control node\n"); return -ENODEV;"amlogic,meson-axg-usb-ctrl");
@@ -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");
if (node < 0) { debug("Not found usb-control node\n"); return -ENODEV;"amlogic,meson-axg-usb-ctrl");
Thanks, I missed this patch, please use get-maintainer to it gets send to the right mailing-lists the next time.
Acked-by: Neil Armstrong narmstrong@baylibre.com
Neil

Hi,
On Mon, 9 May 2022 14:36:18 +0300, Sergei Antonov wrote:
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.
Thanks, Applied to https://source.denx.de/u-boot/custodians/u-boot-amlogic (u-boot-amlogic-test)
[1/1] meson: axg: search dtb for meson-axg-usb-ctrl on board axg https://source.denx.de/u-boot/custodians/u-boot-amlogic/-/commit/fdc55a6ba83...
participants (2)
-
Neil Armstrong
-
Sergei Antonov