diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2009-08-13 13:24:49 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2009-08-13 13:24:49 +0000 |
commit | 29809d2f1e8c02ea2b0ede0ef698eeadae085716 (patch) | |
tree | 7da8b6a0a6140df6da8ca620c43075e41ba1d6ea /sys/arch/i386/include/intr.h | |
parent | 159ede61834966ca81712d472037395e37ed6e5c (diff) |
Make the i386 APIC code closer to the amd64 version. Many whitespace fixes,
some additional code.
ok toby@, oga@
Diffstat (limited to 'sys/arch/i386/include/intr.h')
-rw-r--r-- | sys/arch/i386/include/intr.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/i386/include/intr.h b/sys/arch/i386/include/intr.h index fd5f02fa4af..bfba600f8de 100644 --- a/sys/arch/i386/include/intr.h +++ b/sys/arch/i386/include/intr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.h,v 1.38 2009/04/19 17:50:18 oga Exp $ */ +/* $OpenBSD: intr.h,v 1.39 2009/08/13 13:24:48 kettenis Exp $ */ /* $NetBSD: intr.h,v 1.5 1996/05/13 06:11:28 mycroft Exp $ */ /* @@ -129,6 +129,8 @@ void splassert_check(int, const char *); #define setsoftnet() softintr(SIR_NET) #define setsofttty() softintr(SIR_TTY) +#include <machine/pic.h> + struct cpu_info; #ifdef MULTIPROCESSOR |