Module Name:    src
Committed By:   jmcneill
Date:           Tue Oct 16 00:10:58 UTC 2018

Modified Files:
        src/sys/dev/pci: pci_quirks.c

Log Message:
Set PCI_QUIRK_HASEXTCNF flag for AMD Seattle PCI host bridges


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/sys/dev/pci/pci_quirks.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/dev/pci/pci_quirks.c
diff -u src/sys/dev/pci/pci_quirks.c:1.10 src/sys/dev/pci/pci_quirks.c:1.11
--- src/sys/dev/pci/pci_quirks.c:1.10	Wed Feb 28 05:50:06 2018
+++ src/sys/dev/pci/pci_quirks.c	Tue Oct 16 00:10:58 2018
@@ -1,4 +1,4 @@
-/*	$NetBSD: pci_quirks.c,v 1.10 2018/02/28 05:50:06 msaitoh Exp $	*/
+/*	$NetBSD: pci_quirks.c,v 1.11 2018/10/16 00:10:58 jmcneill Exp $	*/
 
 /*
  * Copyright (c) 1998 Christopher G. Demetriou.  All rights reserved.
@@ -35,7 +35,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pci_quirks.c,v 1.10 2018/02/28 05:50:06 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pci_quirks.c,v 1.11 2018/10/16 00:10:58 jmcneill Exp $");
 
 #include <sys/param.h>
 #include <sys/device.h>
@@ -53,6 +53,10 @@ static const struct pci_quirkdata pci_qu
 	    PCI_QUIRK_HASEXTCNF },
 	{ PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_COREI76K_IMC_0,
 	    PCI_QUIRK_HASEXTCNF },
+	{ PCI_VENDOR_AMD, PCI_PRODUCT_AMD_SEATTLE_PCHB_1,
+	    PCI_QUIRK_HASEXTCNF },
+	{ PCI_VENDOR_AMD, PCI_PRODUCT_AMD_SEATTLE_PCHB_2,
+	    PCI_QUIRK_HASEXTCNF },
 };
 
 const struct pci_quirkdata *

Reply via email to