Module Name: src Committed By: skrll Date: Sun Sep 29 07:28:20 UTC 2013
Modified Files: src/sys/dev/usb: uhci.c Log Message: Really dump all by calling uhci_dump_qhs and not uhci_dump_qh To generate a diff of this commit: cvs rdiff -u -r1.260 -r1.261 src/sys/dev/usb/uhci.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/dev/usb/uhci.c diff -u src/sys/dev/usb/uhci.c:1.260 src/sys/dev/usb/uhci.c:1.261 --- src/sys/dev/usb/uhci.c:1.260 Sat Sep 14 13:17:21 2013 +++ src/sys/dev/usb/uhci.c Sun Sep 29 07:28:20 2013 @@ -1,4 +1,4 @@ -/* $NetBSD: uhci.c,v 1.260 2013/09/14 13:17:21 joerg Exp $ */ +/* $NetBSD: uhci.c,v 1.261 2013/09/29 07:28:20 skrll Exp $ */ /* * Copyright (c) 1998, 2004, 2011, 2012 The NetBSD Foundation, Inc. @@ -42,7 +42,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: uhci.c,v 1.260 2013/09/14 13:17:21 joerg Exp $"); +__KERNEL_RCSID(0, "$NetBSD: uhci.c,v 1.261 2013/09/29 07:28:20 skrll Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -855,7 +855,7 @@ uhci_dump_all(uhci_softc_t *sc) uhci_dumpregs(sc); printf("intrs=%d\n", sc->sc_bus.no_intrs); /*printf("framelist[i].link = %08x\n", sc->sc_framelist[0].link);*/ - uhci_dump_qh(sc->sc_lctl_start); + uhci_dump_qhs(sc->sc_lctl_start); }