Skip to content
Snippets Groups Projects
Commit fa5b9baa authored by Hans de Goede's avatar Hans de Goede Committed by Simon Glass
Browse files

usb: ohci: Don't log an error on interrupt packet timeout


Interrupts transfers timing out is normal, so do not log an error for this.

Signed-off-by: default avatarHans de Goede <hdegoede@redhat.com>
Acked-by: default avatarMarek Vasut <marex@denx.de>
parent 8d005ef8
No related branches found
No related tags found
No related merge requests found
...@@ -1572,7 +1572,8 @@ static int submit_common_msg(ohci_t *ohci, struct usb_device *dev, ...@@ -1572,7 +1572,8 @@ static int submit_common_msg(ohci_t *ohci, struct usb_device *dev,
dbg("*"); dbg("*");
} else { } else {
err("CTL:TIMEOUT "); if (!usb_pipeint(pipe))
err("CTL:TIMEOUT ");
dbg("submit_common_msg: TO status %x\n", stat); dbg("submit_common_msg: TO status %x\n", stat);
urb->finished = 1; urb->finished = 1;
stat = USB_ST_CRC_ERR; stat = USB_ST_CRC_ERR;
......
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