diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2017-07-31 03:22:23 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2017-07-31 03:22:23 +0200 |
commit | 6e65596827f7ee292221697ff5248c9bc9520851 (patch) | |
tree | bd256a20fa5860839a618b6c806eff1197901946 /sys/src/9/pc/usbohci.c | |
parent | 215b67ff3d630c56418026dda7ae68f23111c4a5 (diff) |
xhci: experimental usb3 support
Diffstat (limited to 'sys/src/9/pc/usbohci.c')
-rw-r--r-- | sys/src/9/pc/usbohci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/9/pc/usbohci.c b/sys/src/9/pc/usbohci.c index c70b59790..ef9b07df9 100644 --- a/sys/src/9/pc/usbohci.c +++ b/sys/src/9/pc/usbohci.c @@ -949,7 +949,7 @@ seprintep(char* s, char* e, Ep *ep) case Tctl: cio = ep->aux; s = seprintio(s, e, cio, "c"); - s = seprint(s, e, "\trepl %d ndata %d\n", ep->rhrepl, cio->ndata); + s = seprint(s, e, "\trepl %llux ndata %d\n", ep->rhrepl, cio->ndata); break; case Tbulk: case Tintr: |