[BACK]Return to ehci.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / dev / usb

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/dev/usb/ehci.c between version 1.41 and 1.42

version 1.41, 2003/01/31 05:25:57 version 1.42, 2003/02/04 18:41:20
Line 1306  ehci_rem_qh(ehci_softc_t *sc, ehci_soft_
Line 1306  ehci_rem_qh(ehci_softc_t *sc, ehci_soft_
   
         SPLUSBCHECK;          SPLUSBCHECK;
         /* XXX */          /* XXX */
         for (p = head; p == NULL && p->next != sqh; p = p->next)          for (p = head; p != NULL && p->next != sqh; p = p->next)
                 ;                  ;
         if (p == NULL)          if (p == NULL)
                 panic("ehci_rem_qh: ED not found");                  panic("ehci_rem_qh: ED not found");

Legend:
Removed from v.1.41  
changed lines
  Added in v.1.42

CVSweb <webmaster@jp.NetBSD.org>