diff options
author | Bob Beck <beck@cvs.openbsd.org> | 2005-09-27 23:02:10 +0000 |
---|---|---|
committer | Bob Beck <beck@cvs.openbsd.org> | 2005-09-27 23:02:10 +0000 |
commit | 50402c8b75f0b1e678b94983a0da5ba3e3ac432f (patch) | |
tree | eb9d9179f58cc0cea1ba7a384e09f14e4daf43a0 /sys | |
parent | 525236c6e2c1f6cf89cdc5b0670e3444d828399e (diff) |
call the init routine for the Intel 82801_FB LPC so that the interrupt
routing table can be found on such boards.
ok mickey@ deraadt@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/i386/pci/pci_intr_fixup.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/i386/pci/pci_intr_fixup.c b/sys/arch/i386/pci/pci_intr_fixup.c index 22c70e35e87..9c945e33e0d 100644 --- a/sys/arch/i386/pci/pci_intr_fixup.c +++ b/sys/arch/i386/pci/pci_intr_fixup.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pci_intr_fixup.c,v 1.38 2005/08/04 13:57:29 mickey Exp $ */ +/* $OpenBSD: pci_intr_fixup.c,v 1.39 2005/09/27 23:02:09 beck Exp $ */ /* $NetBSD: pci_intr_fixup.c,v 1.10 2000/08/10 21:18:27 soda Exp $ */ /* @@ -156,6 +156,8 @@ const struct pciintr_icu_table { piix_init }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801EB_LPC, piix_init }, + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801FB_LPC, + piix_init }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801GB_LPC, piix_init }, |