diff options
author | Constantine Sapuntzakis <csapuntz@cvs.openbsd.org> | 2001-03-25 07:01:00 +0000 |
---|---|---|
committer | Constantine Sapuntzakis <csapuntz@cvs.openbsd.org> | 2001-03-25 07:01:00 +0000 |
commit | b9b4dd6c6db5ce6a84436674adb6947552040d2e (patch) | |
tree | d1b1779ba6c64b6f250bee717b87c31abfce659e /sys | |
parent | d61a031c7a7c0368e715c815565fa37e5a15ff3a (diff) |
Missing splx(). Thanks to dawson and team for finding this one
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/usb/ohci.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/usb/ohci.c b/sys/dev/usb/ohci.c index 695934bff81..5e23b59c5ae 100644 --- a/sys/dev/usb/ohci.c +++ b/sys/dev/usb/ohci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ohci.c,v 1.18 2001/01/28 09:43:41 aaron Exp $ */ +/* $OpenBSD: ohci.c,v 1.19 2001/03/25 07:00:59 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 $ */ @@ -2045,6 +2045,7 @@ ohci_abort_xfer_end(void *v) #ifdef DIAGNOSTIC if (p == NULL) { printf("ohci_abort_xfer: hcpriv==0\n"); + splx(s); return; } #endif |