svn commit: r184569 - in stable/7/sys: . dev/aac

Xin LI delphij at FreeBSD.org
Sun Nov 2 14:43:38 PST 2008


Author: delphij
Date: Sun Nov  2 22:43:37 2008
New Revision: 184569
URL: http://svn.freebsd.org/changeset/base/184569

Log:
  MFC revisions 180072 and 182967 by emaste:
  
  Add explicit PCI IDs for the following Adaptec RAID Series 2 adapters:
  
    Adaptec RAID 2045
    Adaptec RAID 2405
    Adaptec RAID 2445
    Adaptec RAID 2805
  
  Without this change these devices are supported by the driver's family
  support, but they then appear as "Adaptec RAID Controller" in boot
  messages and the dev.aac.0.%desc sysctl.
  
  Approved by:	re (kib)

Modified:
  stable/7/sys/   (props changed)
  stable/7/sys/dev/aac/aac_pci.c

Modified: stable/7/sys/dev/aac/aac_pci.c
==============================================================================
--- stable/7/sys/dev/aac/aac_pci.c	Sun Nov  2 20:22:24 2008	(r184568)
+++ stable/7/sys/dev/aac/aac_pci.c	Sun Nov  2 22:43:37 2008	(r184569)
@@ -245,7 +245,15 @@ struct aac_ident
 	{0x9005, 0x0285, 0x9005, 0x02d0, AAC_HWIF_I960RX, 0,
 	 "Adaptec RAID 52445"},
 	{0x9005, 0x0285, 0x9005, 0x02d1, AAC_HWIF_I960RX, 0,
-        "Adaptec RAID 5405"},
+	 "Adaptec RAID 5405"},
+	{0x9005, 0x0285, 0x9005, 0x02d4, AAC_HWIF_I960RX, 0,
+	 "Adaptec RAID 2045"},
+	{0x9005, 0x0285, 0x9005, 0x02d5, AAC_HWIF_I960RX, 0,
+	 "Adaptec RAID 2405"},
+	{0x9005, 0x0285, 0x9005, 0x02d6, AAC_HWIF_I960RX, 0,
+	 "Adaptec RAID 2445"},
+	{0x9005, 0x0285, 0x9005, 0x02d7, AAC_HWIF_I960RX, 0,
+	 "Adaptec RAID 2805"},
 	{0x9005, 0x0286, 0x1014, 0x9580, AAC_HWIF_RKT, 0,
 	 "IBM ServeRAID-8k"},
 	{0x9005, 0x0285, 0x1014, 0x034d, AAC_HWIF_I960RX, 0,


More information about the svn-src-all mailing list