diff options
author | Stephen M. Cameron <scameron@beardog.cce.hp.com> | 2010-06-16 14:51:15 -0400 |
---|---|---|
committer | James Bottomley <James.Bottomley@suse.de> | 2010-07-27 13:01:54 -0400 |
commit | 2e931f3176d61c693ace27498fdb823ef605e619 (patch) | |
tree | 813f158994fd087ddf92d03b547c63d15d22d8ac | |
parent | ae52e7f09ff509df11cd408eabe90132b6be1231 (diff) |
[SCSI] hpsa: add new controllers
Add 5 CCISSE smart array controllers
Signed-off-by: Stephen M. Cameron <scameron@beardog.cce.hp.com>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
-rw-r--r-- | drivers/scsi/hpsa.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/scsi/hpsa.c b/drivers/scsi/hpsa.c index 1133b5fda0e7..ec9b3a279f58 100644 --- a/drivers/scsi/hpsa.c +++ b/drivers/scsi/hpsa.c | |||
@@ -86,6 +86,11 @@ static const struct pci_device_id hpsa_pci_device_id[] = { | |||
86 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x324a}, | 86 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x324a}, |
87 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x324b}, | 87 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x324b}, |
88 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3233}, | 88 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3233}, |
89 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3250}, | ||
90 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3251}, | ||
91 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3252}, | ||
92 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3253}, | ||
93 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3254}, | ||
89 | #define PCI_DEVICE_ID_HP_CISSF 0x333f | 94 | #define PCI_DEVICE_ID_HP_CISSF 0x333f |
90 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x333F}, | 95 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x333F}, |
91 | {PCI_VENDOR_ID_HP, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, | 96 | {PCI_VENDOR_ID_HP, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, |
@@ -109,6 +114,11 @@ static struct board_type products[] = { | |||
109 | {0x324b103C, "Smart Array P711m", &SA5_access}, | 114 | {0x324b103C, "Smart Array P711m", &SA5_access}, |
110 | {0x3233103C, "StorageWorks P1210m", &SA5_access}, | 115 | {0x3233103C, "StorageWorks P1210m", &SA5_access}, |
111 | {0x333F103C, "StorageWorks P1210m", &SA5_access}, | 116 | {0x333F103C, "StorageWorks P1210m", &SA5_access}, |
117 | {0x3250103C, "Smart Array", &SA5_access}, | ||
118 | {0x3250113C, "Smart Array", &SA5_access}, | ||
119 | {0x3250123C, "Smart Array", &SA5_access}, | ||
120 | {0x3250133C, "Smart Array", &SA5_access}, | ||
121 | {0x3250143C, "Smart Array", &SA5_access}, | ||
112 | {0xFFFF103C, "Unknown Smart Array", &SA5_access}, | 122 | {0xFFFF103C, "Unknown Smart Array", &SA5_access}, |
113 | }; | 123 | }; |
114 | 124 | ||