diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2009-10-22 18:22:12 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2009-10-22 18:22:12 +0000 |
commit | d787a3c999986c7bba70e007482af7302dfffbe5 (patch) | |
tree | 89927507e66edfc5bfb63ccc9ea41b4922e5d079 | |
parent | 91c70f367236c63af0200e82241b53d80004baa9 (diff) |
Do not bother invoking hw_setintrmask() in splinit(), spl0() will do it for
us via splx().
-rw-r--r-- | sys/arch/mips64/mips64/interrupt.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/arch/mips64/mips64/interrupt.c b/sys/arch/mips64/mips64/interrupt.c index df8ec0ac5f1..b081c776910 100644 --- a/sys/arch/mips64/mips64/interrupt.c +++ b/sys/arch/mips64/mips64/interrupt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: interrupt.c,v 1.42 2009/10/07 08:35:47 syuu Exp $ */ +/* $OpenBSD: interrupt.c,v 1.43 2009/10/22 18:22:11 miod Exp $ */ /* * Copyright (c) 2001-2004 Opsycon AB (www.opsycon.se / www.opsycon.com) @@ -265,9 +265,6 @@ splinit() sr = updateimask(0); sr |= SR_INT_ENAB; setsr(sr); -#ifdef IMASK_EXTERNAL - hw_setintrmask(0); -#endif } int |