diff options
| author | Nick Hibma <n_hibma@FreeBSD.org> | 1999-01-22 00:51:12 +0000 |
|---|---|---|
| committer | Nick Hibma <n_hibma@FreeBSD.org> | 1999-01-22 00:51:12 +0000 |
| commit | 235dddd4eaacdb94823b8041ddd5ba5cdd006388 (patch) | |
| tree | c01b467b5204c7b7ae92ddbb4d57fa8998ba8e3c /sys/dev/usb/uhci.c | |
| parent | 5602b5091c31ba1a8aab08b8a7328a9055929517 (diff) | |
Notes
Diffstat (limited to 'sys/dev/usb/uhci.c')
| -rw-r--r-- | sys/dev/usb/uhci.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sys/dev/usb/uhci.c b/sys/dev/usb/uhci.c index b2f07b6da2cf..22857c9eed11 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); |
