diff options
author | 2004-01-02 08:38:15 +0000 | |
---|---|---|
committer | 2004-01-02 08:38:15 +0000 | |
commit | 2766fe41748c83fc493ab27a9a179486ec369e2e (patch) | |
tree | 496e8f84addcc0dd78d86c7c240daccf091eac4a | |
parent | fix mount_mfs example: -N is only an option for newfs not mount_mfs (diff) | |
download | wireguard-openbsd-2766fe41748c83fc493ab27a9a179486ec369e2e.tar.xz wireguard-openbsd-2766fe41748c83fc493ab27a9a179486ec369e2e.zip |
PCI_PRODUCT_ALI_M1533 should use ali1543_init too. When the PCI id for
PCI_PRODUCT_ALI_M1543 was fixed machines with an M1533 stopped working.
ok deraadt@
-rw-r--r-- | sys/arch/i386/pci/pci_intr_fixup.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/i386/pci/pci_intr_fixup.c b/sys/arch/i386/pci/pci_intr_fixup.c index 68774969b94..6d762483243 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.28 2003/07/30 05:26:33 mickey Exp $ */ +/* $OpenBSD: pci_intr_fixup.c,v 1.29 2004/01/02 08:38:15 millert Exp $ */ /* $NetBSD: pci_intr_fixup.c,v 1.10 2000/08/10 21:18:27 soda Exp $ */ /* @@ -174,6 +174,9 @@ const struct pciintr_icu_table { { PCI_VENDOR_AMD, PCI_PRODUCT_AMD_766_ISA, amd756_init }, + { PCI_VENDOR_ALI, PCI_PRODUCT_ALI_M1533, + ali1543_init }, + { PCI_VENDOR_ALI, PCI_PRODUCT_ALI_M1543, ali1543_init }, |