usbxhci: fix mistake in completering()
the td index "x" was incremented twice, once in for loop and in the body expression. so r->rp only got updated every second completion. this is wrong, but harmless.
This commit is contained in:
parent
c5c159b17a
commit
650e5db5a2
1 changed files with 1 additions and 1 deletions
|
@ -800,7 +800,7 @@ completering(Ring *r, u32int *er)
|
|||
pa = (*(u64int*)er) & ~15ULL;
|
||||
ilock(r);
|
||||
|
||||
for(x = r->rp; (int)(r->wp - x) > 0; x++){
|
||||
for(x = r->rp; (int)(r->wp - x) > 0;){
|
||||
td = &r->base[4*(x++ & r->mask)];
|
||||
if((u64int)PADDR(td) == pa){
|
||||
r->rp = x;
|
||||
|
|
Loading…
Reference in a new issue