summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authordyoung <dyoung@NetBSD.org>2008-08-06 15:50:46 +0000
committerdyoung <dyoung@NetBSD.org>2008-08-06 15:50:46 +0000
commit2b1e3ce6be2d810e70fc315fd3877df8f238353b (patch)
tree234914082225097c43cbfb6246e5f39ce9b10bd2 /sys/dev
parent8093db04c630905d078fc655e4f3eefaf2bc1691 (diff)
Identify the O2 Micro OZ711E0 and treat it the same as all of the
other O2 Micro bridges, which seem to spuriously report bus errors if parity-error detection is enabled.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/pci/pccbb.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/dev/pci/pccbb.c b/sys/dev/pci/pccbb.c
index e9a1590d9b6..77a6133bb2a 100644
--- a/sys/dev/pci/pccbb.c
+++ b/sys/dev/pci/pccbb.c
@@ -1,4 +1,4 @@
-/* $NetBSD: pccbb.c,v 1.178 2008/07/03 13:37:34 drochner Exp $ */
+/* $NetBSD: pccbb.c,v 1.179 2008/08/06 15:50:46 dyoung Exp $ */
/*
* Copyright (c) 1998, 1999 and 2000
@@ -31,7 +31,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pccbb.c,v 1.178 2008/07/03 13:37:34 drochner Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pccbb.c,v 1.179 2008/08/06 15:50:46 dyoung Exp $");
/*
#define CBB_DEBUG
@@ -363,6 +363,8 @@ const struct yenta_chipinfo {
CB_O2MICRO, PCCBB_PCMCIA_MEM_32},
{ MAKEID(PCI_VENDOR_O2MICRO, PCI_PRODUCT_O2MICRO_OZ6972),
CB_O2MICRO, PCCBB_PCMCIA_MEM_32},
+ { MAKEID(PCI_VENDOR_O2MICRO, PCI_PRODUCT_O2MICRO_7223),
+ CB_O2MICRO, PCCBB_PCMCIA_MEM_32},
/* sentinel, or Generic chip */
{ 0 /* null id */ , CB_UNKNOWN, PCCBB_PCMCIA_MEM_32},