summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authornakayama <nakayama@NetBSD.org>2010-05-08 19:49:02 +0000
committernakayama <nakayama@NetBSD.org>2010-05-08 19:49:02 +0000
commit72d141f5483e2f54e1a1db9482ada89379f6c2bc (patch)
treec6841746e206a89b28a13f9dd2829dfdef15c978 /sys/dev
parent0beba32f65557fbea362003c21a89ee2f8d06b9c (diff)
PCI-ISA Bridge paired with M5229 UDMA IDE Controller rev. 0xC3 is
M1533. Follow the fix in rev 1.1004 of pcidevs.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/pci/aceride.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/pci/aceride.c b/sys/dev/pci/aceride.c
index d80411319fa..f16c7a1f2d5 100644
--- a/sys/dev/pci/aceride.c
+++ b/sys/dev/pci/aceride.c
@@ -1,4 +1,4 @@
-/* $NetBSD: aceride.c,v 1.26 2009/10/19 18:41:14 bouyer Exp $ */
+/* $NetBSD: aceride.c,v 1.27 2010/05/08 19:49:02 nakayama Exp $ */
/*
* Copyright (c) 1999, 2000, 2001 Manuel Bouyer.
@@ -25,7 +25,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: aceride.c,v 1.26 2009/10/19 18:41:14 bouyer Exp $");
+__KERNEL_RCSID(0, "$NetBSD: aceride.c,v 1.27 2010/05/08 19:49:02 nakayama Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -102,7 +102,7 @@ acer_pcib_match(struct pci_attach_args *pa)
if (PCI_CLASS(pa->pa_class) == PCI_CLASS_BRIDGE &&
PCI_SUBCLASS(pa->pa_class) == PCI_SUBCLASS_BRIDGE_ISA &&
PCI_VENDOR(pa->pa_id) == PCI_VENDOR_ALI &&
- PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_ALI_M1543)
+ PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_ALI_M1533)
return 1;
return 0;
}