diff options
author | Constantine Sapuntzakis <csapuntz@cvs.openbsd.org> | 2001-03-25 06:37:28 +0000 |
---|---|---|
committer | Constantine Sapuntzakis <csapuntz@cvs.openbsd.org> | 2001-03-25 06:37:28 +0000 |
commit | 54c077f967c2ef41359039034375733a3b73624f (patch) | |
tree | e00984c210c26695e842e237a5d300a4001d7e44 /sys/dev | |
parent | 7b0fffca2cc32f7d27220ce47c60204e896d3b3d (diff) |
Missing splx(s). Thanks to Dawson and team
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/pci/if_tl.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/pci/if_tl.c b/sys/dev/pci/if_tl.c index 5dab7321d90..158085f40ef 100644 --- a/sys/dev/pci/if_tl.c +++ b/sys/dev/pci/if_tl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_tl.c,v 1.17 2001/02/20 19:39:43 mickey Exp $ */ +/* $OpenBSD: if_tl.c,v 1.18 2001/03/25 06:37:27 csapuntz Exp $ */ /* * Copyright (c) 1997, 1998 @@ -2092,6 +2092,7 @@ void tl_init(xsc) printf("tl%d: initialization failed: no " "memory for rx buffers\n", sc->tl_unit); tl_stop(sc); + splx(s); return; } |