diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2005-11-24 03:54:46 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2005-11-24 03:54:46 +0000 |
commit | 75b6ed24d68557a7eb9f782ce324645e4ad3a792 (patch) | |
tree | b0ee3e7aeab32c677c8283fb7c4fbcf079c859b5 /sys/arch/i386 | |
parent | a32996da9df235e08891cf615b968a8693060cda (diff) |
add AMD 768 interrupt router PCI id and use the proper id for the AMD 766 chipset.
Thanks to Gordon Willem Klok <gklok at cogeco dot ca> for testing on a 768 based board.
Diffstat (limited to 'sys/arch/i386')
-rw-r--r-- | sys/arch/i386/pci/pci_intr_fixup.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/arch/i386/pci/pci_intr_fixup.c b/sys/arch/i386/pci/pci_intr_fixup.c index 7fd8492e10e..4f7262e8553 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.49 2005/11/23 09:24:57 mickey Exp $ */ +/* $OpenBSD: pci_intr_fixup.c,v 1.50 2005/11/24 03:54:45 brad Exp $ */ /* $NetBSD: pci_intr_fixup.c,v 1.10 2000/08/10 21:18:27 soda Exp $ */ /* @@ -209,7 +209,9 @@ const struct pciintr_icu_table { { PCI_VENDOR_AMD, PCI_PRODUCT_AMD_PBC756_PMC, amd756_init }, - { PCI_VENDOR_AMD, PCI_PRODUCT_AMD_766_ISA, + { PCI_VENDOR_AMD, PCI_PRODUCT_AMD_766_PMC, + amd756_init }, + { PCI_VENDOR_AMD, PCI_PRODUCT_AMD_PBC768_PMC, amd756_init }, { PCI_VENDOR_ALI, PCI_PRODUCT_ALI_M1533, |