diff options
Diffstat (limited to 'board/samsung/common/board.c')
-rw-r--r-- | board/samsung/common/board.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/board/samsung/common/board.c b/board/samsung/common/board.c index e359060870..b715bcdf6f 100644 --- a/board/samsung/common/board.c +++ b/board/samsung/common/board.c @@ -27,6 +27,7 @@ #include <lcd.h> #include <samsung/misc.h> #include <usb.h> +#include <dwc3-uboot.h> #include <samsung/multi-plat.h> DECLARE_GLOBAL_DATA_PTR; @@ -423,5 +424,8 @@ void reset_misc(void) int board_usb_cleanup(int index, enum usb_init_type init) { +#ifdef CONFIG_USB_DWC3 + dwc3_uboot_exit(index); +#endif return 0; } |