diff options
author | Patrick Wildt <patrick@cvs.openbsd.org> | 2019-03-12 18:13:41 +0000 |
---|---|---|
committer | Patrick Wildt <patrick@cvs.openbsd.org> | 2019-03-12 18:13:41 +0000 |
commit | 18e7301d3d6d513d34b07593be79152dfe068f0d (patch) | |
tree | 2e683e4c74ec6c21e98fb2a0fe50f5fada78d8be /sys | |
parent | 7e154e001a15f4f338826146929ecf5f948e8028 (diff) |
Fix typo in debug print: wih -> with
ok mpi@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/usb/xhci.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/usb/xhci.c b/sys/dev/usb/xhci.c index 9f7e0064d69..60ea85afc98 100644 --- a/sys/dev/usb/xhci.c +++ b/sys/dev/usb/xhci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: xhci.c,v 1.94 2019/03/11 17:50:09 mpi Exp $ */ +/* $OpenBSD: xhci.c,v 1.95 2019/03/12 18:13:40 patrick Exp $ */ /* * Copyright (c) 2014-2015 Martin Pieuchot @@ -721,11 +721,11 @@ xhci_event_xfer(struct xhci_softc *sc, uint64_t paddr, uint32_t status, switch (code) { case XHCI_CODE_RING_UNDERRUN: - DPRINTF(("%s: slot %u underrun wih %zu TRB\n", DEVNAME(sc), + DPRINTF(("%s: slot %u underrun with %zu TRB\n", DEVNAME(sc), slot, xp->ring.ntrb - xp->free_trbs)); return; case XHCI_CODE_RING_OVERRUN: - DPRINTF(("%s: slot %u overrun wih %zu TRB\n", DEVNAME(sc), + DPRINTF(("%s: slot %u overrun with %zu TRB\n", DEVNAME(sc), slot, xp->ring.ntrb - xp->free_trbs)); return; default: |