diff options
author | Vikas Chaudhary <vikas.chaudhary@qlogic.com> | 2011-03-21 06:34:24 -0400 |
---|---|---|
committer | James Bottomley <James.Bottomley@suse.de> | 2011-03-23 13:48:26 -0400 |
commit | 9640de2099a3c7936b65bf3a45e67a324de950c8 (patch) | |
tree | e1dcde8d3ff0b8833cd2f6ea5b1e7af61b48d5fb /drivers/scsi | |
parent | 8c3adc796f32fa4878ec843f8960717ba377e024 (diff) |
[SCSI] qla4xxx: cleanup qla4xxx_initialize_ddb_list()
Remove process all aen code from qla4xxx_initialize_ddb_list()
as DPC activities should be done in DPC only.
Signed-off-by: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
Reviewed-by: Mike Christie <michaelc@cs.wisc.edu>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers/scsi')
-rw-r--r-- | drivers/scsi/qla4xxx/ql4_init.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/drivers/scsi/qla4xxx/ql4_init.c b/drivers/scsi/qla4xxx/ql4_init.c index 1629c48c35ef..22fc57e2bc05 100644 --- a/drivers/scsi/qla4xxx/ql4_init.c +++ b/drivers/scsi/qla4xxx/ql4_init.c | |||
@@ -1013,13 +1013,6 @@ static int qla4xxx_initialize_ddb_list(struct scsi_qla_host *ha) | |||
1013 | if ((status = qla4xxx_build_ddb_list(ha)) == QLA_ERROR) | 1013 | if ((status = qla4xxx_build_ddb_list(ha)) == QLA_ERROR) |
1014 | return status; | 1014 | return status; |
1015 | 1015 | ||
1016 | /* | ||
1017 | * Targets can come online after the inital discovery, so processing | ||
1018 | * the aens here will catch them. | ||
1019 | */ | ||
1020 | if (test_and_clear_bit(DPC_AEN, &ha->dpc_flags)) | ||
1021 | qla4xxx_process_aen(ha, PROCESS_ALL_AENS); | ||
1022 | |||
1023 | return status; | 1016 | return status; |
1024 | } | 1017 | } |
1025 | 1018 | ||