Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 185241
b: refs/heads/master
c: 22e1869
h: refs/heads/master
i:
  185239: f34f382
v: v3
  • Loading branch information
Dmitri Epshtein authored and Greg Kroah-Hartman committed Mar 2, 2010
1 parent 9a9b078 commit f92382f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d63c66d2d08f52487f3ef32f1c9b1231d848966b
refs/heads/master: 22e186948a262c9cd377fb43aa50bb3c3f01c468
10 changes: 7 additions & 3 deletions trunk/drivers/usb/host/ehci-sched.c
Original file line number Diff line number Diff line change
Expand Up @@ -2324,9 +2324,13 @@ scan_periodic (struct ehci_hcd *ehci)
* No need to check for activity unless the
* frame is current.
*/
if (frame == clock_frame && live &&
(q.sitd->hw_results &
SITD_ACTIVE(ehci))) {
if (((frame == clock_frame) ||
(((frame + 1) % ehci->periodic_size)
== clock_frame))
&& live
&& (q.sitd->hw_results &
SITD_ACTIVE(ehci))) {

incomplete = true;
q_p = &q.sitd->sitd_next;
hw_p = &q.sitd->hw_next;
Expand Down

0 comments on commit f92382f

Please sign in to comment.