summaryrefslogtreecommitdiffstats
path: root/sys/dev/usb/uhci.c
diff options
context:
space:
mode:
authorn_hibma <n_hibma@FreeBSD.org>1999-01-22 00:51:12 +0000
committern_hibma <n_hibma@FreeBSD.org>1999-01-22 00:51:12 +0000
commit7824a7cd281c653055ce19b159c4e96c999fcdaf (patch)
tree4b96ca7b19893ffd4e14f88fd23e637d18ee4198 /sys/dev/usb/uhci.c
parentd7d000c63871de531d26264ef6a7c27ddf4eed16 (diff)
downloadFreeBSD-src-7824a7cd281c653055ce19b159c4e96c999fcdaf.zip
FreeBSD-src-7824a7cd281c653055ce19b159c4e96c999fcdaf.tar.gz
Textual changes
Diffstat (limited to 'sys/dev/usb/uhci.c')
-rw-r--r--sys/dev/usb/uhci.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/sys/dev/usb/uhci.c b/sys/dev/usb/uhci.c
index b2f07b6..22857c9 100644
--- a/sys/dev/usb/uhci.c
+++ b/sys/dev/usb/uhci.c
@@ -937,8 +937,6 @@ uhci_run(sc, run)
s = splusb();
running = ((UREAD2(sc, UHCI_STS) & UHCI_STS_HCH) == 0);
- DPRINTF(("sc->sc_iobase=0x%x run=0x%x, running=0x%x\n",
- sc->sc_iobase, run,running));
if (run == running) {
splx(s);
return (USBD_NORMAL_COMPLETION);
@@ -946,7 +944,6 @@ uhci_run(sc, run)
UWRITE2(sc, UHCI_CMD, run ? UHCI_CMD_RS : 0);
for(n = 0; n < 10; n++) {
running = ((UREAD2(sc, UHCI_STS) & UHCI_STS_HCH) == 0);
- DPRINTF(("run=0x%x, running=0x%x\n", run,running));
/* return when we've entered the state we want */
if (run == running) {
splx(s);
OpenPOWER on IntegriCloud