EHCI: Fix qh_ioccheck to move bp to next QH

This commit is contained in:
Ilya Averyanov 2015-09-07 13:42:39 -06:00 committed by Gregory Nutt
parent 6799bba3c1
commit 8cc83fa6dc
2 changed files with 2 additions and 2 deletions

View File

@ -2765,7 +2765,7 @@ static int lpc31_qh_ioccheck(struct lpc31_qh_s *qh, uint32_t **bp, void *arg)
/* Yes... we cannot process the QH while it is still active. Return
* zero to visit the next QH in the list.
*/
*bp = &qh->hw.hlp;
return OK;
}

View File

@ -2581,7 +2581,7 @@ static int sam_qh_ioccheck(struct sam_qh_s *qh, uint32_t **bp, void *arg)
/* Yes... we cannot process the QH while it is still active. Return
* zero to visit the next QH in the list.
*/
*bp = &qh->hw.hlp;
return OK;
}