aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/hpsa_cmd.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/scsi/hpsa_cmd.h')
-rw-r--r--drivers/scsi/hpsa_cmd.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/scsi/hpsa_cmd.h b/drivers/scsi/hpsa_cmd.h
index f5c4c3cc053..18464900e76 100644
--- a/drivers/scsi/hpsa_cmd.h
+++ b/drivers/scsi/hpsa_cmd.h
@@ -104,6 +104,7 @@
104 104
105#define CFGTBL_Trans_Simple 0x00000002l 105#define CFGTBL_Trans_Simple 0x00000002l
106#define CFGTBL_Trans_Performant 0x00000004l 106#define CFGTBL_Trans_Performant 0x00000004l
107#define CFGTBL_Trans_use_short_tags 0x20000000l
107 108
108#define CFGTBL_BusType_Ultra2 0x00000001l 109#define CFGTBL_BusType_Ultra2 0x00000001l
109#define CFGTBL_BusType_Ultra3 0x00000002l 110#define CFGTBL_BusType_Ultra3 0x00000002l
@@ -265,6 +266,7 @@ struct ErrorInfo {
265 266
266#define DIRECT_LOOKUP_SHIFT 5 267#define DIRECT_LOOKUP_SHIFT 5
267#define DIRECT_LOOKUP_BIT 0x10 268#define DIRECT_LOOKUP_BIT 0x10
269#define DIRECT_LOOKUP_MASK (~((1 << DIRECT_LOOKUP_SHIFT) - 1))
268 270
269#define HPSA_ERROR_BIT 0x02 271#define HPSA_ERROR_BIT 0x02
270struct ctlr_info; /* defined in hpsa.h */ 272struct ctlr_info; /* defined in hpsa.h */
@@ -291,7 +293,7 @@ struct CommandList {
291 struct ctlr_info *h; 293 struct ctlr_info *h;
292 int cmd_type; 294 int cmd_type;
293 long cmdindex; 295 long cmdindex;
294 struct hlist_node list; 296 struct list_head list;
295 struct request *rq; 297 struct request *rq;
296 struct completion *waiting; 298 struct completion *waiting;
297 void *scsi_cmd; 299 void *scsi_cmd;