diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2004-01-02 08:38:16 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2004-01-02 08:38:16 +0000 |
commit | 8e11578412ef574037f561fe0634a2786f9496af (patch) | |
tree | 08529169ce44df47318a1d5f266b64826a487cea /sys/arch | |
parent | 7b6f4fc24b94d40dfc5ef712f5a082d1b36cd5c8 (diff) |
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@
Diffstat (limited to 'sys/arch')
-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 }, |