mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-04-04 01:27:11 +02:00
usb: fix freeze on sync commit for inactive pipes
Performing an asynchronous commit on an inactive pipe would yield USB_COMMIT_INACTVE and *not* invoke the callback (as intended), which usb_commit_sync() ignored, causing a freeze. This issue appeared after a world switch, which (for reasons not yet known) appear to fail the first writes until a commit, and that commit would then hit an inactive pipe.
This commit is contained in:
parent
bbda77769d
commit
d110ab608e
1 changed files with 4 additions and 1 deletions
|
@ -401,7 +401,10 @@ void usb_commit_sync(int pipe)
|
|||
while(rc == USB_COMMIT_BUSY);
|
||||
|
||||
/* Wait until the commit completes */
|
||||
while(!flag) sleep();
|
||||
if(rc == 0)
|
||||
{
|
||||
while(!flag) sleep();
|
||||
}
|
||||
}
|
||||
|
||||
/* usb_pipe_write_bemp(): Callback for the BEMP interrupt on a pipe */
|
||||
|
|
Loading…
Add table
Reference in a new issue