Skip to content
Snippets Groups Projects
Commit eca76b74 authored by Paul Kocialkowski's avatar Paul Kocialkowski Committed by Marek Vasut
Browse files

fastboot: Dynamic controller index for usb_gadget_handle_interrupts


Since we're now using a dynamic controller index for fastboot too,
usb_gadget_handle_interrupts should be using it instead of 0 (despite the fact
that it's currently not being used at all in the musb-new implementation).

Signed-off-by: default avatarPaul Kocialkowski <contact@paulk.fr>
parent 99fc2221
No related branches found
No related tags found
No related merge requests found
......@@ -47,7 +47,7 @@ static int do_fastboot(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
break;
if (ctrlc())
break;
usb_gadget_handle_interrupts(0);
usb_gadget_handle_interrupts(controller_index);
}
ret = CMD_RET_SUCCESS;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment