summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorConstantine Sapuntzakis <csapuntz@cvs.openbsd.org>2001-03-25 07:03:27 +0000
committerConstantine Sapuntzakis <csapuntz@cvs.openbsd.org>2001-03-25 07:03:27 +0000
commit7a94a41062cfdd6ee156cd226f38e04f982249df (patch)
tree000968bc2c60c340158bf8515b278f69b8b1d77a /sys
parentb9b4dd6c6db5ce6a84436674adb6947552040d2e (diff)
Missing splx(). Thanks to dawson and team for finding this one
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/usb/ohci.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/usb/ohci.c b/sys/dev/usb/ohci.c
index 5e23b59c5ae..6466674697b 100644
--- a/sys/dev/usb/ohci.c
+++ b/sys/dev/usb/ohci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ohci.c,v 1.19 2001/03/25 07:00:59 csapuntz Exp $ */
+/* $OpenBSD: ohci.c,v 1.20 2001/03/25 07:03:26 csapuntz Exp $ */
/* $NetBSD: ohci.c,v 1.93 2000/08/17 23:18:56 augustss Exp $ */
/* $FreeBSD: src/sys/dev/usb/ohci.c,v 1.22 1999/11/17 22:33:40 n_hibma Exp $ */
@@ -3148,6 +3148,7 @@ ohci_device_isoc_abort(usbd_xfer_handle xfer)
sitd = xfer->hcpriv;
#ifdef DIAGNOSTIC
if (sitd == NULL) {
+ splx(s);
printf("ohci_device_isoc_abort: hcpriv==0\n");
return;
}