aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/qla2xxx/qla_def.h
diff options
context:
space:
mode:
authorAndrew Vasquez <andrew.vasquez@qlogic.com>2005-07-06 13:32:37 -0400
committerJames Bottomley <jejb@mulgrave.(none)>2005-07-14 11:13:11 -0400
commitcc4731f5b4539faea237bacd170a27a230a7e724 (patch)
treee1c9df14e591a29680b4a287972b74cc53f2b5d7 /drivers/scsi/qla2xxx/qla_def.h
parentae91193cd5bc80b4d62b1d4f0e7f3fea48f41ccd (diff)
[SCSI] qla2xxx: Correct maximum supported lun and target-id definitions.
Correct maximum supported lun and target-id definitions. The driver uses command-IOCBs which support a maximum lun value of 0xffff -- correct #define to reflect the change. Also, remove superfluous MAX_TARGET definition. 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.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/scsi/qla2xxx/qla_def.h b/drivers/scsi/qla2xxx/qla_def.h
index 7a76e2aa6385..acf40dcbfb30 100644
--- a/drivers/scsi/qla2xxx/qla_def.h
+++ b/drivers/scsi/qla2xxx/qla_def.h
@@ -181,7 +181,7 @@
181 */ 181 */
182#define WWN_SIZE 8 /* Size of WWPN, WWN & WWNN */ 182#define WWN_SIZE 8 /* Size of WWPN, WWN & WWNN */
183#define MAX_FIBRE_DEVICES 512 183#define MAX_FIBRE_DEVICES 512
184#define MAX_FIBRE_LUNS 256 184#define MAX_FIBRE_LUNS 0xFFFF
185#define MAX_RSCN_COUNT 32 185#define MAX_RSCN_COUNT 32
186#define MAX_HOST_COUNT 16 186#define MAX_HOST_COUNT 16
187 187
@@ -191,7 +191,6 @@
191#define MAX_BUSES 1 /* We only have one bus today */ 191#define MAX_BUSES 1 /* We only have one bus today */
192#define MAX_TARGETS_2100 MAX_FIBRE_DEVICES 192#define MAX_TARGETS_2100 MAX_FIBRE_DEVICES
193#define MAX_TARGETS_2200 MAX_FIBRE_DEVICES 193#define MAX_TARGETS_2200 MAX_FIBRE_DEVICES
194#define MAX_TARGETS MAX_FIBRE_DEVICES
195#define MIN_LUNS 8 194#define MIN_LUNS 8
196#define MAX_LUNS MAX_FIBRE_LUNS 195#define MAX_LUNS MAX_FIBRE_LUNS
197#define MAX_CMDS_PER_LUN 255 196#define MAX_CMDS_PER_LUN 255