Module Name:    src
Committed By:   sborrill
Date:           Mon Mar  5 16:21:44 UTC 2012

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

Log Message:
Add support for Intel 6 Series Serial ATA Controller


To generate a diff of this commit:
cvs rdiff -u -r1.57 -r1.58 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.57 src/sys/dev/pci/piixide.c:1.58
--- src/sys/dev/pci/piixide.c:1.57	Mon Apr  4 20:37:56 2011
+++ src/sys/dev/pci/piixide.c	Mon Mar  5 16:21:44 2012
@@ -1,4 +1,4 @@
-/*	$NetBSD: piixide.c,v 1.57 2011/04/04 20:37:56 dyoung Exp $	*/
+/*	$NetBSD: piixide.c,v 1.58 2012/03/05 16:21:44 sborrill Exp $	*/
 
 /*
  * Copyright (c) 1999, 2000, 2001 Manuel Bouyer.
@@ -25,7 +25,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: piixide.c,v 1.57 2011/04/04 20:37:56 dyoung Exp $");
+__KERNEL_RCSID(0, "$NetBSD: piixide.c,v 1.58 2012/03/05 16:21:44 sborrill Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -331,6 +331,30 @@ static const struct pciide_product_desc 
 	  "Intel 3400 Serial ATA Controller",
 	  piixsata_chip_map,
 	},
+	{
+	  PCI_PRODUCT_INTEL_6SERIES_SATA_1,
+	  0,
+	  "Intel 6 Series Serial ATA Controller",
+	  piixsata_chip_map,
+	},
+	{
+	  PCI_PRODUCT_INTEL_6SERIES_SATA_2,
+	  0,
+	  "Intel 6 Series Serial ATA Controller",
+	  piixsata_chip_map,
+	},
+	{
+	  PCI_PRODUCT_INTEL_6SERIES_SATA_3,
+	  0,
+	  "Intel 6 Series Serial ATA Controller",
+	  piixsata_chip_map,
+	},
+	{
+	  PCI_PRODUCT_INTEL_6SERIES_SATA_4,
+	  0,
+	  "Intel 6 Series Serial ATA Controller",
+	  piixsata_chip_map,
+	},
 	{ 0,
 	  0,
 	  NULL,

Reply via email to