diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2015-05-15 13:32:09 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2015-05-15 13:32:09 +0000 |
commit | 148909b561a0eb60353a638664530cb70d5d1fd0 (patch) | |
tree | 42df132117ea8189dde177c1d31db6692fbb261d /sys/dev/hil | |
parent | 68f312177c845274b27ff08a2f029ae617d9a0a6 (diff) |
add some missing splx() calls
ok deraadt@ kettenis@ krw@
Diffstat (limited to 'sys/dev/hil')
-rw-r--r-- | sys/dev/hil/hil.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/hil/hil.c b/sys/dev/hil/hil.c index 5bab6695a50..44c4aad4743 100644 --- a/sys/dev/hil/hil.c +++ b/sys/dev/hil/hil.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hil.c,v 1.25 2013/11/18 20:21:51 deraadt Exp $ */ +/* $OpenBSD: hil.c,v 1.26 2015/05/15 13:32:08 jsg Exp $ */ /* * Copyright (c) 2003, 2004, Miodrag Vallat. * All rights reserved. @@ -616,6 +616,7 @@ hilempty(struct hil_softc *sc) * configuration has changed. */ hilconfig(sc, oldmaxdev); + splx(s); return; } } |