Commit 015474f8 authored by David Brownell's avatar David Brownell Committed by Greg Kroah-Hartman

USB hcd.c, non-HS periodic transfers

This patch adds a missing "break", which prevented low and full
speed periodic transfers from getting through the "hcd" framework
to the driver (OHCI, for now).  Sigh... :)
parent de5847c4
...@@ -1356,6 +1356,7 @@ static int hcd_submit_urb (struct urb *urb, int mem_flags) ...@@ -1356,6 +1356,7 @@ static int hcd_submit_urb (struct urb *urb, int mem_flags)
// NOTE usb and ohci handle up to 2^15 // NOTE usb and ohci handle up to 2^15
temp = 1024; temp = 1024;
} }
break;
default: default:
return -EINVAL; return -EINVAL;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment