Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/usb Don't null the qh_link point in the interrupt tr...



details:   https://anonhg.NetBSD.org/src/rev/3ea4dfb788c9
branches:  trunk
changeset: 580509:3ea4dfb788c9
user:      augustss <augustss%NetBSD.org@localhost>
date:      Wed Apr 27 02:12:20 2005 +0000

description:
Don't null the qh_link point in the interrupt tree after it has been
initialized.  From Dan Ellis in kern/30003.

diffstat:

 sys/dev/usb/ehci.c |  5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diffs (26 lines):

diff -r 0a3f321330c0 -r 3ea4dfb788c9 sys/dev/usb/ehci.c
--- a/sys/dev/usb/ehci.c        Wed Apr 27 00:59:46 2005 +0000
+++ b/sys/dev/usb/ehci.c        Wed Apr 27 02:12:20 2005 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ehci.c,v 1.91 2005/02/27 00:27:51 perry Exp $ */
+/*     $NetBSD: ehci.c,v 1.92 2005/04/27 02:12:20 augustss Exp $ */
 
 /*
  * Copyright (c) 2004 The NetBSD Foundation, Inc.
@@ -65,7 +65,7 @@
 */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ehci.c,v 1.91 2005/02/27 00:27:51 perry Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ehci.c,v 1.92 2005/04/27 02:12:20 augustss Exp $");
 
 #include "ohci.h"
 #include "uhci.h"
@@ -439,7 +439,6 @@
                            EHCI_LINK_QH);
                }
                sqh->qh.qh_endp = htole32(EHCI_QH_SET_EPS(EHCI_QH_SPEED_HIGH));
-               sqh->qh.qh_link = EHCI_NULL;
                sqh->qh.qh_curqtd = EHCI_NULL;
                sqh->next = NULL;
                sqh->qh.qh_qtd.qtd_next = EHCI_NULL;



Home | Main Index | Thread Index | Old Index