diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2008-04-26 14:33:28 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2008-04-26 14:33:28 +0000 |
commit | 7c9317f13b6885e1bec4e4a9866bd68ae26b7704 (patch) | |
tree | 5c1fafa279100bfc31034db7e2388b433427f972 /sys/arch/i386/include | |
parent | 62c4204683479030d5f64096c000b81c2acb0000 (diff) |
Remove softast; it's no longer used.
ok krw@
Diffstat (limited to 'sys/arch/i386/include')
-rw-r--r-- | sys/arch/i386/include/i82489var.h | 4 | ||||
-rw-r--r-- | sys/arch/i386/include/intrdefs.h | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/sys/arch/i386/include/i82489var.h b/sys/arch/i386/include/i82489var.h index 03ce41551b7..8e13768fe75 100644 --- a/sys/arch/i386/include/i82489var.h +++ b/sys/arch/i386/include/i82489var.h @@ -1,4 +1,4 @@ -/* $OpenBSD: i82489var.h,v 1.7 2008/04/18 20:20:35 kettenis Exp $ */ +/* $OpenBSD: i82489var.h,v 1.8 2008/04/26 14:33:27 kettenis Exp $ */ /* $NetBSD: i82489var.h,v 1.1.2.2 2000/02/21 18:46:14 sommerfeld Exp $ */ /*- @@ -102,7 +102,6 @@ extern void Xintrltimer(void); #define LAPIC_SOFTCLOCK_VECTOR IPL_SOFTCLOCK #define LAPIC_SOFTNET_VECTOR IPL_SOFTNET #define LAPIC_SOFTTTY_VECTOR IPL_SOFTTTY -#define LAPIC_SOFTAST_VECTOR IPL_SOFTAST /* * Special IPI vectors. We can use IDT 0xf0 - 0xff for this. @@ -119,7 +118,6 @@ extern void Xintripi_invlrange(void); extern void Xintrsoftclock(void); extern void Xintrsoftnet(void); extern void Xintrsofttty(void); -extern void Xintrsoftast(void); extern void (*apichandler[])(void); diff --git a/sys/arch/i386/include/intrdefs.h b/sys/arch/i386/include/intrdefs.h index 474fecf591c..8b81a124db4 100644 --- a/sys/arch/i386/include/intrdefs.h +++ b/sys/arch/i386/include/intrdefs.h @@ -1,4 +1,4 @@ -/* $OpenBSD: intrdefs.h,v 1.10 2008/04/18 20:20:35 kettenis Exp $ */ +/* $OpenBSD: intrdefs.h,v 1.11 2008/04/26 14:33:27 kettenis Exp $ */ /* $NetBSD: intrdefs.h,v 1.2 2003/05/04 22:01:56 fvdl Exp $ */ #ifndef _i386_INTRDEFS_H @@ -56,7 +56,6 @@ * The level numbers are picked to fit into APIC vector priorities. */ #define IPL_NONE 0 /* nothing */ -#define IPL_SOFTAST MAKEIPL(0) /* AST */ #define IPL_SOFTCLOCK MAKEIPL(1) /* timeouts */ #define IPL_SOFTNET MAKEIPL(2) /* protocol stacks */ #define IPL_BIO MAKEIPL(3) /* block I/O */ @@ -88,7 +87,6 @@ #define SIR_CLOCK 29 #define SIR_NET 28 #define SIR_TTY 27 -#define SIR_AST 26 /* |