diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2015-05-02 14:33:20 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2015-05-02 14:33:20 +0000 |
commit | fa26b9d36e1a2a9a8e0b8f888ccc79b617b9fc64 (patch) | |
tree | 2af4bd21b7c941526379f84f486b5f151fa5e511 /sys/arch/vax | |
parent | 0781ba5cc30599292927155de341a90a55af1dfc (diff) |
add missing splx calls
ok miod@
Diffstat (limited to 'sys/arch/vax')
-rw-r--r-- | sys/arch/vax/if/sgec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/vax/if/sgec.c b/sys/arch/vax/if/sgec.c index 64a77254b3c..22ce74a10b5 100644 --- a/sys/arch/vax/if/sgec.c +++ b/sys/arch/vax/if/sgec.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sgec.c,v 1.26 2015/03/28 11:24:25 mpi Exp $ */ +/* $OpenBSD: sgec.c,v 1.27 2015/05/02 14:33:19 jsg Exp $ */ /* $NetBSD: sgec.c,v 1.5 2000/06/04 02:14:14 matt Exp $ */ /* * Copyright (c) 1999 Ludd, University of Lule}, Sweden. All rights reserved. @@ -594,6 +594,7 @@ sgec_intr(sc) if (csr & ZE_NICSR5_ME) { printf("%s: memory error, resetting\n", sc->sc_dev.dv_xname); zeinit(sc); + splx(s); return (1); } |