mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
usb: musb_hcd: fix compilation error
commit 65c1f9820c8f79f "usb: Add nonblock argument to submit_int_msg" breaks the musb_hcd driver. Fixing it by adding the missing argument Signed-off-by: Jean-Jacques Hiblot <jjhiblot@ti.com>
This commit is contained in:
parent
9dcab2c4d2
commit
e3e5825d01
1 changed files with 2 additions and 2 deletions
|
@ -1049,8 +1049,8 @@ int usb_lowlevel_stop(int index)
|
|||
* This function supports usb interrupt transfers. Currently, usb interrupt
|
||||
* transfers are not supported.
|
||||
*/
|
||||
int submit_int_msg(struct usb_device *dev, unsigned long pipe,
|
||||
void *buffer, int len, int interval)
|
||||
int submit_int_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
|
||||
int len, int interval, bool nonblock)
|
||||
{
|
||||
int dir_out = usb_pipeout(pipe);
|
||||
int ep = usb_pipeendpoint(pipe);
|
||||
|
|
Loading…
Reference in a new issue