diff options
author | Mike Miller <mike.miller@hp.com> | 2010-10-19 03:40:34 -0400 |
---|---|---|
committer | Jens Axboe <jaxboe@fusionio.com> | 2010-10-19 03:40:34 -0400 |
commit | 6362beea8914cbd4630ccde3617d944aeca2d48f (patch) | |
tree | f73f703e32b7018674ae26c35c91956bc4a10045 /drivers/block | |
parent | 5dbfe7aedf54aa7f62fd659e34371d4ea0e7bffe (diff) |
cciss: fix PCI IDs for new Smart Array controllers
cciss: fix PCI IDs for new controllers
This patch fixes the botched up PCI IDs of new controllers. Please consider
this patch for inclusion.
Signed-off-by: Mike Miller <mike.miller@hp.com>
Signed-off-by: Jens Axboe <jaxboe@fusionio.com>
Diffstat (limited to 'drivers/block')
-rw-r--r-- | drivers/block/cciss.c | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/drivers/block/cciss.c b/drivers/block/cciss.c index df2ed4d6684d..41f9acb8ecd7 100644 --- a/drivers/block/cciss.c +++ b/drivers/block/cciss.c | |||
@@ -105,11 +105,12 @@ static const struct pci_device_id cciss_pci_device_id[] = { | |||
105 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3249}, | 105 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3249}, |
106 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x324A}, | 106 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x324A}, |
107 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x324B}, | 107 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x324B}, |
108 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3250}, | 108 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3350}, |
109 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3251}, | 109 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3351}, |
110 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3252}, | 110 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3352}, |
111 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3253}, | 111 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3353}, |
112 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3254}, | 112 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3354}, |
113 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3355}, | ||
113 | {0,} | 114 | {0,} |
114 | }; | 115 | }; |
115 | 116 | ||
@@ -149,11 +150,12 @@ static struct board_type products[] = { | |||
149 | {0x3249103C, "Smart Array P812", &SA5_access}, | 150 | {0x3249103C, "Smart Array P812", &SA5_access}, |
150 | {0x324A103C, "Smart Array P712m", &SA5_access}, | 151 | {0x324A103C, "Smart Array P712m", &SA5_access}, |
151 | {0x324B103C, "Smart Array P711m", &SA5_access}, | 152 | {0x324B103C, "Smart Array P711m", &SA5_access}, |
152 | {0x3250103C, "Smart Array", &SA5_access}, | 153 | {0x3350103C, "Smart Array", &SA5_access}, |
153 | {0x3251103C, "Smart Array", &SA5_access}, | 154 | {0x3351103C, "Smart Array", &SA5_access}, |
154 | {0x3252103C, "Smart Array", &SA5_access}, | 155 | {0x3352103C, "Smart Array", &SA5_access}, |
155 | {0x3253103C, "Smart Array", &SA5_access}, | 156 | {0x3353103C, "Smart Array", &SA5_access}, |
156 | {0x3254103C, "Smart Array", &SA5_access}, | 157 | {0x3354103C, "Smart Array", &SA5_access}, |
158 | {0x3355103C, "Smart Array", &SA5_access}, | ||
157 | }; | 159 | }; |
158 | 160 | ||
159 | /* How long to wait (in milliseconds) for board to go into simple mode */ | 161 | /* How long to wait (in milliseconds) for board to go into simple mode */ |