diff options
author | alfred <alfred@FreeBSD.org> | 2002-03-19 21:44:49 +0000 |
---|---|---|
committer | alfred <alfred@FreeBSD.org> | 2002-03-19 21:44:49 +0000 |
commit | d0017d9252543e0da162688302446230e54dd45e (patch) | |
tree | 8d049749167bbecb70f5cf77e9ffd4603111be3b /sys/dev/usb/uhci.c | |
parent | 357e37e023059920b1f80494e489797e2f69a3dd (diff) | |
download | FreeBSD-src-d0017d9252543e0da162688302446230e54dd45e.zip FreeBSD-src-d0017d9252543e0da162688302446230e54dd45e.tar.gz |
add missing semicolon.
Diffstat (limited to 'sys/dev/usb/uhci.c')
-rw-r--r-- | sys/dev/usb/uhci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/usb/uhci.c b/sys/dev/usb/uhci.c index 04330c5..3cf4df0 100644 --- a/sys/dev/usb/uhci.c +++ b/sys/dev/usb/uhci.c @@ -2761,7 +2761,7 @@ uhci_device_setintr(uhci_softc_t *sc, struct uhci_pipe *upipe, int ival) /* Enter QHs into the controller data structures. */ for(i = 0; i < npoll; i++) uhci_add_intr(sc, upipe->u.intr.qhs[i]); - splx(s) + splx(s); DPRINTFN(5, ("uhci_setintr: returns %p\n", upipe)); return (USBD_NORMAL_COMPLETION); |