diff options
author | Constantine Sapuntzakis <csapuntz@cvs.openbsd.org> | 2001-03-25 06:15:38 +0000 |
---|---|---|
committer | Constantine Sapuntzakis <csapuntz@cvs.openbsd.org> | 2001-03-25 06:15:38 +0000 |
commit | c8fba3caa372b8ef389cec41f3a60a34a30b4093 (patch) | |
tree | 6848b09d0cf1ce5d4e7b508122a0e16e891a734c /sys | |
parent | e2dd781b97fb85edcb6599ff1c9d7a7979f28caa (diff) |
Missing splx(). Thanks to Dawson and team for finding this one
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/ic/aic7xxx.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/ic/aic7xxx.c b/sys/dev/ic/aic7xxx.c index c9da675e13b..56d8b4ee5aa 100644 --- a/sys/dev/ic/aic7xxx.c +++ b/sys/dev/ic/aic7xxx.c @@ -33,7 +33,7 @@ * SUCH DAMAGE. * * $FreeBSD: src/sys/dev/aic7xxx/aic7xxx.c,v 1.40 2000/01/07 23:08:17 gibbs Exp $ - * $OpenBSD: aic7xxx.c,v 1.24 2000/12/06 15:46:51 mickey Exp $ + * $OpenBSD: aic7xxx.c,v 1.25 2001/03/25 06:15:37 csapuntz Exp $ */ /* * A few notes on features of the driver. @@ -4984,6 +4984,7 @@ bus_reset: /* Will clear us from the bus */ restart_sequencer(ahc); + splx(s); return; } |