summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorYe Li <ye.li@nxp.com>2019-01-03 00:46:09 -0800
committerYe Li <ye.li@nxp.com>2020-04-26 23:24:08 -0700
commitc7a67af8ddcf86bdabe48ff66e7308e030a95a13 (patch)
tree66ac93d66a63dfaedcdf61f61e04f47e71304083 /common
parentda954ea161d76fa18957b617117a7de30f6279ec (diff)
MLK-20559-5 f_sdp: Add a callback to clean up USB driver
Because SDP directly jumps to next level boot image, we'd better clean up the USB driver before it. Implement a weak callback function, that spl sdp can use it to clean up USB driver. Signed-off-by: Ye Li <ye.li@nxp.com> (cherry picked from commit 1f6b3efc62cb277fd4316d8ed5115f47b09369a0) (cherry picked from commit a3ed6467a4efb7acaa15281ec2c37e7f051b00db)
Diffstat (limited to 'common')
-rw-r--r--common/spl/spl_sdp.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/common/spl/spl_sdp.c b/common/spl/spl_sdp.c
index 82bce0bd2e..d150951b86 100644
--- a/common/spl/spl_sdp.c
+++ b/common/spl/spl_sdp.c
@@ -39,6 +39,7 @@ static int spl_sdp_load_image(struct spl_image_info *spl_image,
ret = spl_sdp_handle(controller_index, spl_image);
debug("SDP ended\n");
+ board_usb_cleanup(controller_index, USB_INIT_DEVICE);
return ret;
}
SPL_LOAD_IMAGE_METHOD("USB SDP", 0, BOOT_DEVICE_BOARD, spl_sdp_load_image);