diff mbox series

[2/3] arm: mach-k3: am6_init: Fix the path and value's length in the fixup performed for usb boot

Message ID 20220518111914.7876-3-a-govindraju@ti.com
State Accepted
Commit 36dafd8045ebe1cfb452a87e51fa394849532a7d
Delegated to: Tom Rini
Headers show
Series AM65: Fix USB boot modes | expand

Commit Message

Aswath Govindraju May 18, 2022, 11:19 a.m. UTC
The node name of the bus in the device tree has changed. Also, the length
argument to be passed should be the length of new value. Therefore, fix the
path to usb device tree node as well as the length argument passed.

Signed-off-by: Aswath Govindraju <a-govindraju@ti.com>
---
 arch/arm/mach-k3/am6_init.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Tom Rini June 10, 2022, 9:39 p.m. UTC | #1
On Wed, May 18, 2022 at 04:49:13PM +0530, Aswath Govindraju wrote:

> The node name of the bus in the device tree has changed. Also, the length
> argument to be passed should be the length of new value. Therefore, fix the
> path to usb device tree node as well as the length argument passed.
> 
> Signed-off-by: Aswath Govindraju <a-govindraju@ti.com>

Applied to u-boot/next, thanks!
diff mbox series

Patch

diff --git a/arch/arm/mach-k3/am6_init.c b/arch/arm/mach-k3/am6_init.c
index 86c1a349f1fc..7992918adcdc 100644
--- a/arch/arm/mach-k3/am6_init.c
+++ b/arch/arm/mach-k3/am6_init.c
@@ -127,8 +127,8 @@  static int fixup_usb_boot(void)
 		 * before the dwc3 bind takes place
 		 */
 		ret = fdt_find_and_setprop((void *)gd->fdt_blob,
-				"/interconnect@100000/dwc3@4000000/usb@10000",
-				"dr_mode", "host", 11, 0);
+				"/bus@100000/dwc3@4000000/usb@10000",
+				"dr_mode", "host", 5, 0);
 		if (ret)
 			printf("%s: fdt_find_and_setprop() failed:%d\n", __func__,
 			       ret);