Module Name:    src
Committed By:   tsutsui
Date:           Wed Feb 15 16:30:29 UTC 2012

Modified Files:
        src/sys/arch/x86/pci: pci_machdep.c

Log Message:
Add VIA VX900 host bridge to a buggy PCI mode 1 quirk table.  PR/46018
Ok releng@


To generate a diff of this commit:
cvs rdiff -u -r1.53 -r1.54 src/sys/arch/x86/pci/pci_machdep.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/x86/pci/pci_machdep.c
diff -u src/sys/arch/x86/pci/pci_machdep.c:1.53 src/sys/arch/x86/pci/pci_machdep.c:1.54
--- src/sys/arch/x86/pci/pci_machdep.c:1.53	Fri Nov 18 22:18:08 2011
+++ src/sys/arch/x86/pci/pci_machdep.c	Wed Feb 15 16:30:29 2012
@@ -1,4 +1,4 @@
-/*	$NetBSD: pci_machdep.c,v 1.53 2011/11/18 22:18:08 jmcneill Exp $	*/
+/*	$NetBSD: pci_machdep.c,v 1.54 2012/02/15 16:30:29 tsutsui Exp $	*/
 
 /*-
  * Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
@@ -73,7 +73,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pci_machdep.c,v 1.53 2011/11/18 22:18:08 jmcneill Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pci_machdep.c,v 1.54 2012/02/15 16:30:29 tsutsui Exp $");
 
 #include <sys/types.h>
 #include <sys/param.h>
@@ -197,6 +197,8 @@ struct {
 	_qe(0, 0, 0, PCI_VENDOR_SIS, PCI_PRODUCT_SIS_740),
 	/* SIS 741 */
 	_qe(0, 0, 0, PCI_VENDOR_SIS, PCI_PRODUCT_SIS_741),
+	/* VIA Technologies VX900 */
+	_qe(0, 0, 0, PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VX900_HB),
 	{0, 0xffffffff} /* patchable */
 };
 #undef _m1tag

Reply via email to