diff options
author | Mike Miller <mike.miller@hp.com> | 2006-12-06 23:35:03 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-07 11:39:29 -0500 |
commit | de9239167158c0210c5b9a709d67cea1b6f8ae56 (patch) | |
tree | 370dbb0f2ea4a00f96cd3e275391c5bf73ceb9c9 /drivers/block/cciss.c | |
parent | f880632f963c3611d096d9373d16663c076310c7 (diff) |
[PATCH] cciss: fix pci ssid for the E500 controller
Change the SSID on the E500 as a workaround for a firmware bug. It looks like
the original patch was backed out between rc2 and rc4.
Signed-off-by: Mike Miller <mike.miller@hp.com>
Acked-by: Jens Axboe <jens.axboe@oracle.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/block/cciss.c')
-rw-r--r-- | drivers/block/cciss.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/block/cciss.c b/drivers/block/cciss.c index 0f976aaaf049..4899ab27f781 100644 --- a/drivers/block/cciss.c +++ b/drivers/block/cciss.c | |||
@@ -82,7 +82,7 @@ static const struct pci_device_id cciss_pci_device_id[] = { | |||
82 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSD, 0x103C, 0x3213}, | 82 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSD, 0x103C, 0x3213}, |
83 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSD, 0x103C, 0x3214}, | 83 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSD, 0x103C, 0x3214}, |
84 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSD, 0x103C, 0x3215}, | 84 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSD, 0x103C, 0x3215}, |
85 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSC, 0x103C, 0x3233}, | 85 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSC, 0x103C, 0x3237}, |
86 | {PCI_VENDOR_ID_HP, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, | 86 | {PCI_VENDOR_ID_HP, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, |
87 | PCI_CLASS_STORAGE_RAID << 8, 0xffff << 8, 0}, | 87 | PCI_CLASS_STORAGE_RAID << 8, 0xffff << 8, 0}, |
88 | {0,} | 88 | {0,} |
@@ -114,7 +114,7 @@ static struct board_type products[] = { | |||
114 | {0x3213103C, "Smart Array E200i", &SA5_access, 120}, | 114 | {0x3213103C, "Smart Array E200i", &SA5_access, 120}, |
115 | {0x3214103C, "Smart Array E200i", &SA5_access, 120}, | 115 | {0x3214103C, "Smart Array E200i", &SA5_access, 120}, |
116 | {0x3215103C, "Smart Array E200i", &SA5_access, 120}, | 116 | {0x3215103C, "Smart Array E200i", &SA5_access, 120}, |
117 | {0x3233103C, "Smart Array E500", &SA5_access, 512}, | 117 | {0x3237103C, "Smart Array E500", &SA5_access, 512}, |
118 | {0xFFFF103C, "Unknown Smart Array", &SA5_access, 120}, | 118 | {0xFFFF103C, "Unknown Smart Array", &SA5_access, 120}, |
119 | }; | 119 | }; |
120 | 120 | ||