svn commit: r239460 - releng/9.1/sys/dev/hptiop

Xin LI delphij at FreeBSD.org
Mon Aug 20 18:27:03 UTC 2012


Author: delphij
Date: Mon Aug 20 18:27:02 2012
New Revision: 239460
URL: http://svn.freebsd.org/changeset/base/239460

Log:
  MFC r239084
  
  Add PCI IDs for various new High Point RocketRAID 43xx and 3xxx devices.
  
  Obtained from:	FreeNAS
  Approved by:	re (kib)

Modified:
  releng/9.1/sys/dev/hptiop/hptiop.c
Directory Properties:
  releng/9.1/sys/   (props changed)
  releng/9.1/sys/dev/   (props changed)

Modified: releng/9.1/sys/dev/hptiop/hptiop.c
==============================================================================
--- releng/9.1/sys/dev/hptiop/hptiop.c	Mon Aug 20 18:26:16 2012	(r239459)
+++ releng/9.1/sys/dev/hptiop/hptiop.c	Mon Aug 20 18:27:02 2012	(r239460)
@@ -1284,9 +1284,13 @@ static int hptiop_probe(device_t dev)
 	id = pci_get_device(dev);
 
 	switch (id) {
-		case 0x4322:
-		case 0x4321:
+		case 0x4210:
+		case 0x4211:
+		case 0x4310:
+		case 0x4311:
 		case 0x4320:
+		case 0x4321:
+ 		case 0x4322:
 			sas = 1;
 		case 0x3220:
 		case 0x3320:
@@ -1296,12 +1300,14 @@ static int hptiop_probe(device_t dev)
 		case 0x3511:
 		case 0x3521:
 		case 0x3522:
+		case 0x3530:
 		case 0x3540:
+		case 0x3560:
 			ops = &hptiop_itl_ops;
 			break;
+		case 0x3020:
 		case 0x3120:
 		case 0x3122:
-		case 0x3020:
 			ops = &hptiop_mv_ops;
 			break;
 		default:


More information about the svn-src-all mailing list