diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2006-08-06 01:13:23 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2006-08-06 01:13:23 +0000 |
commit | 9fdb8b6e60d000837fdcdcf6a9abf7d4e22822b5 (patch) | |
tree | d02833e0b7f728e80c0352d0f05b8aed675ba439 /sys/arch/i386/pci | |
parent | e537df57ef26e62c8e3dd9fcfc06fabab606919e (diff) |
add the Intel 82801GHM LPC and 6321ESB LPC
Diffstat (limited to 'sys/arch/i386/pci')
-rw-r--r-- | sys/arch/i386/pci/pci_intr_fixup.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/arch/i386/pci/pci_intr_fixup.c b/sys/arch/i386/pci/pci_intr_fixup.c index dfdfbfd5f1a..a91d27dbfc8 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.54 2006/08/06 01:07:13 brad Exp $ */ +/* $OpenBSD: pci_intr_fixup.c,v 1.55 2006/08/06 01:13:22 brad Exp $ */ /* $NetBSD: pci_intr_fixup.c,v 1.10 2000/08/10 21:18:27 soda Exp $ */ /* @@ -137,6 +137,8 @@ const struct pciintr_icu_table { } pciintr_icu_table[] = { { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_6300ESB_LPC, piix_init }, + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_6321ESB_LPC, + piix_init }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82371MX, piix_init }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82371AB_ISA, @@ -177,6 +179,8 @@ const struct pciintr_icu_table { piix_init }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801GH_LPC, piix_init }, + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801GHM_LPC, + piix_init }, { PCI_VENDOR_OPTI, PCI_PRODUCT_OPTI_82C558, opti82c558_init }, |