Module Name:    src
Committed By:   jakllsch
Date:           Sat May 26 13:33:44 UTC 2018

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

Log Message:
Match PCI_PRODUCT_INTEL_82Q45_IDER.

Not entirely sure which chip map to use, but as this is for AMT, it's
probably not like there's a real PATA interface to configure DMA for,
and as the 965 AMT stuff uses the sata version of the chip map, we'll
cargo cult it for now.


To generate a diff of this commit:
cvs rdiff -u -r1.65 -r1.66 src/sys/dev/pci/piixide.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/piixide.c
diff -u src/sys/dev/pci/piixide.c:1.65 src/sys/dev/pci/piixide.c:1.66
--- src/sys/dev/pci/piixide.c:1.65	Mon Feb  1 08:28:48 2016
+++ src/sys/dev/pci/piixide.c	Sat May 26 13:33:44 2018
@@ -1,4 +1,4 @@
-/*	$NetBSD: piixide.c,v 1.65 2016/02/01 08:28:48 msaitoh Exp $	*/
+/*	$NetBSD: piixide.c,v 1.66 2018/05/26 13:33:44 jakllsch Exp $	*/
 
 /*
  * Copyright (c) 1999, 2000, 2001 Manuel Bouyer.
@@ -25,7 +25,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: piixide.c,v 1.65 2016/02/01 08:28:48 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: piixide.c,v 1.66 2018/05/26 13:33:44 jakllsch Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -289,6 +289,11 @@ static const struct pciide_product_desc 
 	  "Intel 82965PM IDE controller",
 	  piixsata_chip_map,
 	},
+	{ PCI_PRODUCT_INTEL_82Q45_IDER,
+	  0,
+	  "Intel 82Q45 IDE Redirection controller",
+	  piixsata_chip_map,
+	},
 	{
 	  PCI_PRODUCT_INTEL_3400_SATA_1,
 	  0,

Reply via email to