diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-02-20 19:01:20 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-02-20 19:01:20 +0000 |
commit | c72c118a97848396302fbe79664a3007ce878b5f (patch) | |
tree | 8746706cdaad46f0f6de025c8042ea3a1cb2431b /sys/arch | |
parent | f14d8825b0d65c179585b4e30a3578dd4194073c (diff) |
support amd766 as amd756; from peter@ (pr/1948); tested by Henning Brauer <lists-openbsdbugs@bsws.de>
Diffstat (limited to 'sys/arch')
-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 6bbddc28526..3d975586aa2 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.20 2001/12/16 02:10:49 mickey Exp $ */ +/* $OpenBSD: pci_intr_fixup.c,v 1.21 2002/02/20 19:01:19 mickey Exp $ */ /* $NetBSD: pci_intr_fixup.c,v 1.10 2000/08/10 21:18:27 soda Exp $ */ /* @@ -171,6 +171,8 @@ const struct pciintr_icu_table { { PCI_VENDOR_AMD, PCI_PRODUCT_AMD_PBC756_PMC, amd756_init }, + { PCI_VENDOR_AMD, PCI_PRODUCT_AMD_766_ISA, + amd756_init }, { PCI_VENDOR_ALI, PCI_PRODUCT_ALI_M1543, ali1543_init }, |