[PATCH v3 1/3] usb: ehci: mxs: Fix the USB node pointer retrieval

2023-10-16 Thread sbabic
> From: Fabio Estevam > Use dev_ofnode() to retrieve the USB node pointer from the udevice > structure. > This fixes the following build error: > drivers/usb/host/ehci-mxs.c:143:38: error: 'struct udevice' has no member > named 'node_' > Signed-off-by: Fabio Estevam > Reviewed-by: Marek Vasut

[PATCH v3 1/3] usb: ehci: mxs: Fix the USB node pointer retrieval

2023-10-09 Thread Fabio Estevam
From: Fabio Estevam Use dev_ofnode() to retrieve the USB node pointer from the udevice structure. This fixes the following build error: drivers/usb/host/ehci-mxs.c:143:38: error: 'struct udevice' has no member named 'node_' Signed-off-by: Fabio Estevam Reviewed-by: Marek Vasut --- Changes