On Wed, Dec 04, 2002 at 04:00:15PM -0700, Cliff L. Biffle wrote:
> Hi all.
> I'm running 5.0-DP2 on a motherboard with the Apollo KT133A chipset.  (I 
> believe it's an ASUS, but it doesn't seem to be labelled.)  The USB 
> controller (described by dmesg as a VIA 83C572) periodically blows its brains 
> out.
> 

Is it ohci?  If so can you try this patch?

Joe
-- 
Josef Karthauser ([EMAIL PROTECTED])              http://www.josef-k.net/
FreeBSD (cvs meister, admin and hacker)     http://www.uk.FreeBSD.org/
Physics Particle Theory (student)   http://www.pact.cpes.sussex.ac.uk/
================ An eclectic mix of fact and theory. =================
Index: ohci.c
===================================================================
RCS file: /home/ncvs/src/sys/dev/usb/ohci.c,v
retrieving revision 1.113
diff -u -r1.113 ohci.c
--- ohci.c      30 Sep 2002 17:50:16 -0000      1.113
+++ ohci.c      1 Dec 2002 21:04:36 -0000
@@ -1810,7 +1810,7 @@
        SPLUSBCHECK;
 
        /* XXX */
-       for (p = head; p == NULL && p->next != sed; p = p->next)
+       for (p = head; p != NULL && p->next != sed; p = p->next)
                ;
        if (p == NULL)
                panic("ohci_rem_ed: ED not found\n");

Attachment: msg48114/pgp00000.pgp
Description: PGP signature

Reply via email to