aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/qla2xxx/qla_init.c
diff options
context:
space:
mode:
authorandrew.vasquez@qlogic.com <andrew.vasquez@qlogic.com>2006-03-09 17:27:18 -0500
committerJames Bottomley <jejb@mulgrave.il.steeleye.com>2006-03-12 10:38:22 -0500
commit48c02fde949f15920c0018d33d285fd39730d24b (patch)
treeaded9282ed2e45b0d0c9e73c95cfd60cfbadfba7 /drivers/scsi/qla2xxx/qla_init.c
parent044cc6c8ec311c4ddeebfcc31c53dea282de70b7 (diff)
[SCSI] qla2xxx: Consolidate ISP63xx handling.
As new 23xx firmware will accomidate ISP63xx types. 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_init.c')
-rw-r--r--drivers/scsi/qla2xxx/qla_init.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/scsi/qla2xxx/qla_init.c b/drivers/scsi/qla2xxx/qla_init.c
index e6a2292a2892..d4389095b4bc 100644
--- a/drivers/scsi/qla2xxx/qla_init.c
+++ b/drivers/scsi/qla2xxx/qla_init.c
@@ -1003,6 +1003,10 @@ qla2x00_update_fw_options(scsi_qla_host_t *ha)
1003 if (ha->flags.enable_led_scheme) 1003 if (ha->flags.enable_led_scheme)
1004 ha->fw_options[2] |= BIT_12; 1004 ha->fw_options[2] |= BIT_12;
1005 1005
1006 /* Detect ISP6312. */
1007 if (IS_QLA6312(ha))
1008 ha->fw_options[2] |= BIT_13;
1009
1006 /* Update firmware options. */ 1010 /* Update firmware options. */
1007 qla2x00_set_fw_options(ha, ha->fw_options); 1011 qla2x00_set_fw_options(ha, ha->fw_options);
1008} 1012}