Commit a4a2d10d authored by Mike Miller's avatar Mike Miller Committed by Linus Torvalds

[PATCH] cciss update to version 2.6.4

This patch removes support for 2 controllers that were recently cancelled
and it adds support for the P600, a cciss based SAS controller due to ship
in late March/early April '05.  Neither of these controllers have made it
to the field.
Signed-off-by: default avatarMike Miller <mike.miller@hp.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent abad9998
...@@ -14,8 +14,7 @@ This driver is known to work with the following cards: ...@@ -14,8 +14,7 @@ This driver is known to work with the following cards:
* SA 6400 * SA 6400
* SA 6400 U320 Expansion Module * SA 6400 U320 Expansion Module
* SA 6i * SA 6i
* SA 6422 * SA P600
* SA V100
If nodes are not already created in the /dev/cciss directory, run as root: If nodes are not already created in the /dev/cciss directory, run as root:
......
...@@ -46,14 +46,14 @@ ...@@ -46,14 +46,14 @@
#include <linux/completion.h> #include <linux/completion.h>
#define CCISS_DRIVER_VERSION(maj,min,submin) ((maj<<16)|(min<<8)|(submin)) #define CCISS_DRIVER_VERSION(maj,min,submin) ((maj<<16)|(min<<8)|(submin))
#define DRIVER_NAME "HP CISS Driver (v 2.6.2)" #define DRIVER_NAME "HP CISS Driver (v 2.6.4)"
#define DRIVER_VERSION CCISS_DRIVER_VERSION(2,6,2) #define DRIVER_VERSION CCISS_DRIVER_VERSION(2,6,4)
/* Embedded module documentation macros - see modules.h */ /* Embedded module documentation macros - see modules.h */
MODULE_AUTHOR("Hewlett-Packard Company"); MODULE_AUTHOR("Hewlett-Packard Company");
MODULE_DESCRIPTION("Driver for HP Controller SA5xxx SA6xxx version 2.6.2"); MODULE_DESCRIPTION("Driver for HP Controller SA5xxx SA6xxx version 2.6.4");
MODULE_SUPPORTED_DEVICE("HP SA5i SA5i+ SA532 SA5300 SA5312 SA641 SA642 SA6400" MODULE_SUPPORTED_DEVICE("HP SA5i SA5i+ SA532 SA5300 SA5312 SA641 SA642 SA6400"
" SA6i V100"); " SA6i P600");
MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL");
#include "cciss_cmd.h" #include "cciss_cmd.h"
...@@ -80,10 +80,8 @@ const struct pci_device_id cciss_pci_device_id[] = { ...@@ -80,10 +80,8 @@ const struct pci_device_id cciss_pci_device_id[] = {
0x0E11, 0x409D, 0, 0, 0}, 0x0E11, 0x409D, 0, 0, 0},
{ PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_CISSC, { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_CISSC,
0x0E11, 0x4091, 0, 0, 0}, 0x0E11, 0x4091, 0, 0, 0},
{ PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_CISSC, { PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSA,
0x0E11, 0x409E, 0, 0, 0}, 0x103C, 0x3225, 0, 0, 0},
{ PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISS,
0x103C, 0x3211, 0, 0, 0},
{0,} {0,}
}; };
MODULE_DEVICE_TABLE(pci, cciss_pci_device_id); MODULE_DEVICE_TABLE(pci, cciss_pci_device_id);
...@@ -104,8 +102,7 @@ static struct board_type products[] = { ...@@ -104,8 +102,7 @@ static struct board_type products[] = {
{ 0x409C0E11, "Smart Array 6400", &SA5_access}, { 0x409C0E11, "Smart Array 6400", &SA5_access},
{ 0x409D0E11, "Smart Array 6400 EM", &SA5_access}, { 0x409D0E11, "Smart Array 6400 EM", &SA5_access},
{ 0x40910E11, "Smart Array 6i", &SA5_access}, { 0x40910E11, "Smart Array 6i", &SA5_access},
{ 0x409E0E11, "Smart Array 6422", &SA5_access}, { 0x3225103C, "Smart Array P600", &SA5_access},
{ 0x3211103C, "Smart Array V100", &SA5_access},
}; };
/* How long to wait (in millesconds) for board to go into simple mode */ /* How long to wait (in millesconds) for board to go into simple mode */
......
...@@ -693,7 +693,7 @@ ...@@ -693,7 +693,7 @@
#define PCI_DEVICE_ID_HP_SX1000_IOC 0x127c #define PCI_DEVICE_ID_HP_SX1000_IOC 0x127c
#define PCI_DEVICE_ID_HP_DIVA_EVEREST 0x1282 #define PCI_DEVICE_ID_HP_DIVA_EVEREST 0x1282
#define PCI_DEVICE_ID_HP_DIVA_AUX 0x1290 #define PCI_DEVICE_ID_HP_DIVA_AUX 0x1290
#define PCI_DEVICE_ID_HP_CISS 0x3210 #define PCI_DEVICE_ID_HP_CISSA 0x3220
#define PCI_VENDOR_ID_PCTECH 0x1042 #define PCI_VENDOR_ID_PCTECH 0x1042
#define PCI_DEVICE_ID_PCTECH_RZ1000 0x1000 #define PCI_DEVICE_ID_PCTECH_RZ1000 0x1000
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment