summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorFabio Estevam <festevam@denx.de>2022-07-13 17:39:46 -0300
committerMarek Vasut <marex@denx.de>2022-07-14 16:13:11 +0200
commit16aabfe2f29d4682b2176095029fa307caccaced (patch)
tree767df9c5bceada8690d7b6d7f502493b9aaf28b6 /common
parent48b1cff94744b88821bc9cf8a0e1c54b5e87926c (diff)
spl: sdp: Pass the USB index to board_usb_init()
board_usb_init() should receive the controller_index as its first parameter instead of having it hardcoded as 0. All in-tree users have CONFIG_SPL_SDP_USB_DEV as 0, so this error should not affect any board. Fix it by passing controller_index as the parameter of board_usb_init(). Signed-off-by: Fabio Estevam <festevam@denx.de> Acked-by: Peng Fan <peng.fan@nxp.com>
Diffstat (limited to 'common')
-rw-r--r--common/spl/spl_sdp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/spl/spl_sdp.c b/common/spl/spl_sdp.c
index 36c31aff09..cc4fb4f7cc 100644
--- a/common/spl/spl_sdp.c
+++ b/common/spl/spl_sdp.c
@@ -19,7 +19,7 @@ static int spl_sdp_load_image(struct spl_image_info *spl_image,
usb_gadget_initialize(controller_index);
- board_usb_init(0, USB_INIT_DEVICE);
+ board_usb_init(controller_index, USB_INIT_DEVICE);
g_dnl_clear_detach();
ret = g_dnl_register("usb_dnl_sdp");