svn commit: r207633 - stable/8/sys/dev/usb/controller
Andrew Thompson
thompsa at FreeBSD.org
Tue May 4 21:16:01 UTC 2010
Author: thompsa
Date: Tue May 4 21:16:01 2010
New Revision: 207633
URL: http://svn.freebsd.org/changeset/base/207633
Log:
MFC r201797
Remove unused uhci_dump_qhs().
Modified:
stable/8/sys/dev/usb/controller/uhci.c
Directory Properties:
stable/8/sys/ (props changed)
stable/8/sys/amd64/include/xen/ (props changed)
stable/8/sys/cddl/contrib/opensolaris/ (props changed)
stable/8/sys/contrib/dev/acpica/ (props changed)
stable/8/sys/contrib/pf/ (props changed)
stable/8/sys/dev/xen/xenpci/ (props changed)
stable/8/sys/geom/sched/ (props changed)
Modified: stable/8/sys/dev/usb/controller/uhci.c
==============================================================================
--- stable/8/sys/dev/usb/controller/uhci.c Tue May 4 20:51:19 2010 (r207632)
+++ stable/8/sys/dev/usb/controller/uhci.c Tue May 4 21:16:01 2010 (r207633)
@@ -830,33 +830,6 @@ uhci_dump_all(uhci_softc_t *sc)
}
static void
-uhci_dump_qhs(uhci_qh_t *sqh)
-{
- uint8_t temp;
-
- temp = uhci_dump_qh(sqh);
-
- /*
- * uhci_dump_qhs displays all the QHs and TDs from the given QH
- * onwards Traverses sideways first, then down.
- *
- * QH1 QH2 No QH TD2.1 TD2.2 TD1.1 etc.
- *
- * TD2.x being the TDs queued at QH2 and QH1 being referenced from QH1.
- */
-
- if (temp & 1)
- uhci_dump_qhs(sqh->h_next);
- else
- DPRINTF("No QH\n");
-
- if (temp & 2)
- uhci_dump_tds(sqh->e_next);
- else
- DPRINTF("No TD\n");
-}
-
-static void
uhci_dump_tds(uhci_td_t *td)
{
for (;
More information about the svn-src-stable
mailing list