Module Name:    src
Committed By:   matt
Date:           Sat Oct 20 06:18:54 UTC 2012

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

Log Message:
Recognize 3114.


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/sys/dev/pci/siisata_pci.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/siisata_pci.c
diff -u src/sys/dev/pci/siisata_pci.c:1.10 src/sys/dev/pci/siisata_pci.c:1.11
--- src/sys/dev/pci/siisata_pci.c:1.10	Mon Jan 30 19:41:23 2012
+++ src/sys/dev/pci/siisata_pci.c	Sat Oct 20 06:18:54 2012
@@ -1,4 +1,4 @@
-/* $NetBSD: siisata_pci.c,v 1.10 2012/01/30 19:41:23 drochner Exp $ */
+/* $NetBSD: siisata_pci.c,v 1.11 2012/10/20 06:18:54 matt Exp $ */
 
 /*
  * Copyright (c) 2006 Manuel Bouyer.
@@ -51,7 +51,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: siisata_pci.c,v 1.10 2012/01/30 19:41:23 drochner Exp $");
+__KERNEL_RCSID(0, "$NetBSD: siisata_pci.c,v 1.11 2012/10/20 06:18:54 matt Exp $");
 
 #include <sys/types.h>
 #include <sys/malloc.h>
@@ -85,6 +85,12 @@ struct siisata_pci_board {
 static const struct siisata_pci_board siisata_pci_boards[] = {
 	{
 		.spb_vend = PCI_VENDOR_CMDTECH,
+		.spb_prod = PCI_PRODUCT_CMDTECH_3114,
+		.spb_port = 4,
+		.spb_chip = 3114,
+	},
+	{
+		.spb_vend = PCI_VENDOR_CMDTECH,
 		.spb_prod = PCI_PRODUCT_CMDTECH_3124,
 		.spb_port = 4,
 		.spb_chip = 3124,

Reply via email to