diff options
author | tegge <tegge@FreeBSD.org> | 2001-01-28 01:07:54 +0000 |
---|---|---|
committer | tegge <tegge@FreeBSD.org> | 2001-01-28 01:07:54 +0000 |
commit | 55837ed17a3a2de16bb80beea9044a80a8306d29 (patch) | |
tree | 88f37e01221c649b3f54521ccbe3c0f116907f2d /sys/i386/include/smp.h | |
parent | 18f604377b44e23f62badff17ec21171a8ca980e (diff) | |
download | FreeBSD-src-55837ed17a3a2de16bb80beea9044a80a8306d29.zip FreeBSD-src-55837ed17a3a2de16bb80beea9044a80a8306d29.tar.gz |
Defer assignment of low level interrupt handlers for PCI interrupts
described in the MP table until something asks for the interrupt number
later on.
Diffstat (limited to 'sys/i386/include/smp.h')
-rw-r--r-- | sys/i386/include/smp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/i386/include/smp.h b/sys/i386/include/smp.h index 0ff53bd..1698f2d 100644 --- a/sys/i386/include/smp.h +++ b/sys/i386/include/smp.h @@ -135,6 +135,7 @@ void imen_dump __P((void)); int apic_ipi __P((int, int, int)); int selected_apic_ipi __P((u_int, int, int)); int io_apic_setup __P((int)); +void io_apic_setup_intpin __P((int, int)); void io_apic_set_id __P((int, int)); int io_apic_get_id __P((int)); int ext_int_setup __P((int, int)); |