From cf1481e54d7d7948c55bb96ecdc2b7e217b48293 Mon Sep 17 00:00:00 2001 From: Kishon Vijay Abraham I Date: Mon, 23 Feb 2015 18:40:18 +0530 Subject: [PATCH] common: cmd_dfu: invoke board_usb_cleanup() for cleaning up Invoked board_usb_cleanup for cleaning up initialized USB. It will be invoked if the user enterts ctrl-C. Signed-off-by: Kishon Vijay Abraham I Reviewed-by: Lukasz Majewski --- common/cmd_dfu.c | 1 + common/usb.c | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/common/cmd_dfu.c b/common/cmd_dfu.c index e975abebc9..161d38bf28 100644 --- a/common/cmd_dfu.c +++ b/common/cmd_dfu.c @@ -68,6 +68,7 @@ static int do_dfu(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) } exit: g_dnl_unregister(); + board_usb_cleanup(controller_index, USB_INIT_DEVICE); done: dfu_free_entities(); diff --git a/common/usb.c b/common/usb.c index bf76c41593..d94640a99e 100644 --- a/common/usb.c +++ b/common/usb.c @@ -1090,4 +1090,10 @@ int board_usb_init(int index, enum usb_init_type init) { return 0; } + +__weak +int board_usb_cleanup(int index, enum usb_init_type init) +{ + return 0; +} /* EOF */ -- 2.39.2