aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/qla2xxx/qla_def.h
diff options
context:
space:
mode:
authorAndrew Vasquez <andrew.vasquez@qlogic.com>2006-05-17 18:09:50 -0400
committerJames Bottomley <jejb@mulgrave.il.steeleye.com>2006-05-20 10:50:11 -0400
commitd4e3e04d789ba23027c66e176b10ac7477906948 (patch)
treee98c514c2b3505af6f0c0a2e48f697899735ff15 /drivers/scsi/qla2xxx/qla_def.h
parentcb63067a772c0149184309a1f232d62c81a93673 (diff)
[SCSI] qla2xxx: Consolidate firmware-dump handling across ISPs.
Simplify and centralise buffer allocation/deallocation, as there's no point in having two memory request methods. Signed-off-by: Andrew Vasquez <andrew.vasquez@qlogic.com> Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/scsi/qla2xxx/qla_def.h')
-rw-r--r--drivers/scsi/qla2xxx/qla_def.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/scsi/qla2xxx/qla_def.h b/drivers/scsi/qla2xxx/qla_def.h
index 30a931979889..d6f6579cfd27 100644
--- a/drivers/scsi/qla2xxx/qla_def.h
+++ b/drivers/scsi/qla2xxx/qla_def.h
@@ -2304,15 +2304,11 @@ typedef struct scsi_qla_host {
2304 2304
2305 /* Firmware dump information. */ 2305 /* Firmware dump information. */
2306 void *fw_dump; 2306 void *fw_dump;
2307 int fw_dump_order; 2307 int fw_dumped;
2308 int fw_dump_reading; 2308 int fw_dump_reading;
2309 char *fw_dump_buffer; 2309 char *fw_dump_buffer;
2310 int fw_dump_buffer_len; 2310 int fw_dump_buffer_len;
2311 2311
2312 int fw_dumped;
2313 void *fw_dump24;
2314 int fw_dump24_len;
2315
2316 uint8_t host_str[16]; 2312 uint8_t host_str[16];
2317 uint32_t pci_attr; 2313 uint32_t pci_attr;
2318 2314