Remove redundant while () from loop.

Submitted by:	 Ganbold <ganbold@micom.mng.net>
Reviewed by:	 scottl
This commit is contained in:
Sean Bruno 2009-02-13 17:44:07 +00:00
parent 455cc6ec70
commit 01f312783e

View File

@ -2979,7 +2979,7 @@ fwohci_arcv(struct fwohci_softc *sc, struct fwohci_dbch *dbch, int count)
db_tr = STAILQ_NEXT(db_tr, link);
resCount = FWOHCI_DMA_READ(db_tr->db[0].db.desc.res)
& OHCI_COUNT_MASK;
} while (resCount == 0)
}
printf(" done\n");
dbch->top = db_tr;
dbch->buf_offset = dbch->xferq.psize - resCount;