diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2006-04-09 00:51:59 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2006-04-09 00:51:59 +0000 |
commit | 022093a9137b6bef71fec074f8d150feabe0f6ea (patch) | |
tree | 620f411be376c056eac285b3b538c5955953569e /sys | |
parent | 394a80b8ea64f044d2e955d6f9fdaf9345fdb03d (diff) |
add another ServerWorks SATA PCI id.
From the Linux svw driver.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/pci/pcidevs | 3 | ||||
-rw-r--r-- | sys/dev/pci/pciide.c | 6 |
2 files changed, 7 insertions, 2 deletions
diff --git a/sys/dev/pci/pcidevs b/sys/dev/pci/pcidevs index 6b18fd1c86f..ee273fa6a6b 100644 --- a/sys/dev/pci/pcidevs +++ b/sys/dev/pci/pcidevs @@ -1,4 +1,4 @@ -$OpenBSD: pcidevs,v 1.1051 2006/04/06 16:49:29 marco Exp $ +$OpenBSD: pcidevs,v 1.1052 2006/04/09 00:51:57 brad Exp $ /* $NetBSD: pcidevs,v 1.30 1997/06/24 06:20:24 thorpej Exp $ */ /* @@ -2688,6 +2688,7 @@ product RCC K2_SATA 0x0240 K2 SATA product RCC FRODO4_SATA 0x0241 Frodo4 SATA product RCC FRODO8_SATA 0x0242 Frodo8 SATA product RCC HT_1000_SATA 0x024a HT-1000 SATA +product RCC SATA 0x024b SATA /* Rendition products */ product RENDITION V1000 0x0001 Verite 1000 diff --git a/sys/dev/pci/pciide.c b/sys/dev/pci/pciide.c index f8c66bd03e6..70b1c338102 100644 --- a/sys/dev/pci/pciide.c +++ b/sys/dev/pci/pciide.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pciide.c,v 1.231 2006/04/02 01:36:07 jsg Exp $ */ +/* $OpenBSD: pciide.c,v 1.232 2006/04/09 00:51:58 brad Exp $ */ /* $NetBSD: pciide.c,v 1.127 2001/08/03 01:31:08 tsutsui Exp $ */ /* @@ -756,6 +756,10 @@ const struct pciide_product_desc pciide_serverworks_products[] = { { PCI_PRODUCT_RCC_HT_1000_SATA, 0, svwsata_chip_map, + }, + { PCI_PRODUCT_RCC_SATA, + 0, + svwsata_chip_map, } }; |