mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
cmd: dfu: Add error handling for board_usb_init
board_usb_init() can failed and error should be handled properly. Signed-off-by: Michal Simek <michal.simek@xilinx.com>
This commit is contained in:
parent
d8bdfc80da
commit
dbdc2744ee
1 changed files with 5 additions and 1 deletions
|
@ -24,7 +24,11 @@ int run_usb_dnl_gadget(int usbctrl_index, char *usb_dnl_gadget)
|
|||
bool dfu_reset = false;
|
||||
int ret, i = 0;
|
||||
|
||||
board_usb_init(usbctrl_index, USB_INIT_DEVICE);
|
||||
ret = board_usb_init(usbctrl_index, USB_INIT_DEVICE);
|
||||
if (ret) {
|
||||
error("board usb init failed\n");
|
||||
return CMD_RET_FAILURE;
|
||||
}
|
||||
g_dnl_clear_detach();
|
||||
ret = g_dnl_register(usb_dnl_gadget);
|
||||
if (ret) {
|
||||
|
|
Loading…
Reference in a new issue