Lines Matching refs:ret
25 int ret; in do_thor_down() local
29 ret = dfu_init_env_entities(interface, devstring); in do_thor_down()
30 if (ret) in do_thor_down()
34 ret = usb_gadget_initialize(controller_index); in do_thor_down()
35 if (ret) { in do_thor_down()
36 pr_err("USB init failed: %d", ret); in do_thor_down()
37 ret = CMD_RET_FAILURE; in do_thor_down()
43 ret = thor_init(); in do_thor_down()
44 if (ret) { in do_thor_down()
45 pr_err("THOR DOWNLOAD failed: %d", ret); in do_thor_down()
46 ret = CMD_RET_FAILURE; in do_thor_down()
50 ret = thor_handle(); in do_thor_down()
51 if (ret) { in do_thor_down()
52 pr_err("THOR failed: %d", ret); in do_thor_down()
53 ret = CMD_RET_FAILURE; in do_thor_down()
63 return ret; in do_thor_down()