diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2007-10-31 20:14:34 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2007-10-31 20:14:34 +0000 |
commit | cd6bf2696240a4d30fe3ea5c56b206fc7a782812 (patch) | |
tree | 78c68131bd73f362cd1b1d29380dcb433113bf17 | |
parent | 09d3118dc958a68d75fd860d45c44a5e756a56ae (diff) |
Garbage collect ienab_bis() and ienab_bic().
Suggested by miod@
-rw-r--r-- | sys/arch/sparc64/sparc64/locore.s | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/sys/arch/sparc64/sparc64/locore.s b/sys/arch/sparc64/sparc64/locore.s index 8873ab23073..0a015574205 100644 --- a/sys/arch/sparc64/sparc64/locore.s +++ b/sys/arch/sparc64/sparc64/locore.s @@ -1,4 +1,4 @@ -/* $OpenBSD: locore.s,v 1.97 2007/10/29 21:27:25 kettenis Exp $ */ +/* $OpenBSD: locore.s,v 1.98 2007/10/31 20:14:33 kettenis Exp $ */ /* $NetBSD: locore.s,v 1.137 2001/08/13 06:10:10 jdolecek Exp $ */ /* @@ -9100,24 +9100,6 @@ ENTRY(cecc_catch) NOTREACHED /* - * ienab_bis(bis) int bis; - * ienab_bic(bic) int bic; - * - * Set and clear bits in the interrupt register. - */ - -/* - * sun4u has separate asr's for clearing/setting the interrupt mask. - */ -ENTRY(ienab_bis) - retl - wr %o0, 0, SET_SOFTINT ! SET_SOFTINT - -ENTRY(ienab_bic) - retl - wr %o0, 0, CLEAR_SOFTINT ! CLEAR_SOFTINT - -/* * send_softint(cpu, level, intrhand) * * Send a softint with an intrhand pointer so we can cause a vectored |