diff options
author | 2007-07-07 13:52:42 +0000 | |
---|---|---|
committer | 2007-07-07 13:52:42 +0000 | |
commit | 3bd326a1f6c26b4c17ab26950b42432d66dcdd2b (patch) | |
tree | 746abd7ce49e12db6b669a2f441a57b646a12f08 | |
parent | Pull in ffs2 support and other updates from FreeBSD. OK deraadt@ (diff) | |
download | wireguard-openbsd-3bd326a1f6c26b4c17ab26950b42432d66dcdd2b.tar.xz wireguard-openbsd-3bd326a1f6c26b4c17ab26950b42432d66dcdd2b.zip |
Match VIA VT8237A; from "Christoph Egger" <Christoph_Egger@gmx.de>.
-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 03827b2e851..2efe7042303 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.56 2006/09/19 11:06:34 jsg Exp $ */ +/* $OpenBSD: pci_intr_fixup.c,v 1.57 2007/07/07 13:52:42 grange Exp $ */ /* $NetBSD: pci_intr_fixup.c,v 1.10 2000/08/10 21:18:27 soda Exp $ */ /* @@ -209,6 +209,8 @@ const struct pciintr_icu_table { via8231_init }, { PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8237_ISA, via8231_init }, + { PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8237A_ISA, + via8231_init }, { PCI_VENDOR_SIS, PCI_PRODUCT_SIS_85C503, sis85c503_init }, |