1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-16 10:20:30 +00:00

Unbreak -O2 build: initialize nstatus to avoid uninitialized warning.

This commit is contained in:
Marcel Moolenaar 2004-07-03 02:10:52 +00:00
parent 128dc4a2e3
commit d7d057c585
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=131514

View File

@ -725,7 +725,7 @@ ehci_idone(struct ehci_xfer *ex)
usbd_xfer_handle xfer = &ex->xfer;
struct ehci_pipe *epipe = (struct ehci_pipe *)xfer->pipe;
ehci_soft_qtd_t *sqtd;
u_int32_t status = 0, nstatus;
u_int32_t status, nstatus;
int actlen;
DPRINTFN(/*12*/2, ("ehci_idone: ex=%p\n", ex));
@ -761,6 +761,8 @@ ehci_idone(struct ehci_xfer *ex)
/* The transfer is done, compute actual length and status. */
actlen = 0;
nstatus = 0;
status = 0;
for (sqtd = ex->sqtdstart; sqtd != NULL; sqtd = sqtd->nextqtd) {
nstatus = le32toh(sqtd->qtd.qtd_status);
if (nstatus & EHCI_QTD_ACTIVE)