mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2026-03-14 21:10:27 +01:00
usb: ohci: Fix ctrl in messages with a data-len of 0
Fix taken from the Linux kernel ohci driver. Signed-off-by: Hans de Goede <hdegoede@redhat.com> Acked-by: Marek Vasut <marex@denx.de>
This commit is contained in:
parent
6651c14065
commit
cae01cb2a9
1 changed files with 1 additions and 1 deletions
|
|
@ -988,7 +988,7 @@ static void td_submit_job(ohci_t *ohci, struct usb_device *dev,
|
|||
}
|
||||
|
||||
/* Status phase */
|
||||
info = usb_pipeout(pipe)?
|
||||
info = (usb_pipeout(pipe) || data_len == 0) ?
|
||||
TD_CC | TD_DP_IN | TD_T_DATA1:
|
||||
TD_CC | TD_DP_OUT | TD_T_DATA1;
|
||||
td_fill(ohci, info, data, 0, dev, cnt++, urb);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue