Module Name: src Committed By: jdolecek Date: Sat Jun 17 20:36:46 UTC 2017
Modified Files: src/sys/dev/pci: siisata_pci.c Log Message: match Adaptec 1220SA; that card actually uses Silicon Image 3132, and works well with the siisata(4) driver To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15 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.14 src/sys/dev/pci/siisata_pci.c:1.15 --- src/sys/dev/pci/siisata_pci.c:1.14 Thu Jul 14 04:19:27 2016 +++ src/sys/dev/pci/siisata_pci.c Sat Jun 17 20:36:46 2017 @@ -1,4 +1,4 @@ -/* $NetBSD: siisata_pci.c,v 1.14 2016/07/14 04:19:27 msaitoh Exp $ */ +/* $NetBSD: siisata_pci.c,v 1.15 2017/06/17 20:36:46 jdolecek Exp $ */ /* * Copyright (c) 2006 Manuel Bouyer. @@ -51,7 +51,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: siisata_pci.c,v 1.14 2016/07/14 04:19:27 msaitoh Exp $"); +__KERNEL_RCSID(0, "$NetBSD: siisata_pci.c,v 1.15 2017/06/17 20:36:46 jdolecek Exp $"); #include <sys/types.h> #include <sys/malloc.h> @@ -97,6 +97,12 @@ static const struct siisata_pci_board si }, { .spb_vend = PCI_VENDOR_CMDTECH, + .spb_prod = PCI_PRODUCT_CMDTECH_AAR_1220SA, + .spb_port = 2, + .spb_chip = 3132, + }, + { + .spb_vend = PCI_VENDOR_CMDTECH, .spb_prod = PCI_PRODUCT_CMDTECH_3531, .spb_port = 1, .spb_chip = 3531,