forked from Minki/linux
[SCSI] qla4xxx: Skip retry of initialize_adapter for ISP80XX
While probe Skip retry of initialize_adapter only for ISP82XX and ISP83XX. We need to retry initialize_adapter for ISP40XX. Signed-off-by: Nilesh Javali <nilesh.javali@qlogic.com> Signed-off-by: Vikas Chaudhary <vikas.chaudhary@qlogic.com> Reviewed-by: Mike Christie <michaelc@cs.wisc.edu> Signed-off-by: James Bottomley <JBottomley@Parallels.com>
This commit is contained in:
parent
9a16f65bed
commit
17801c96b6
@ -5345,8 +5345,11 @@ static int qla4xxx_probe_adapter(struct pci_dev *pdev,
|
||||
status = qla4xxx_initialize_adapter(ha, INIT_ADAPTER);
|
||||
|
||||
/* Dont retry adapter initialization if IRQ allocation failed */
|
||||
if (!test_bit(AF_IRQ_ATTACHED, &ha->flags))
|
||||
if (is_qla80XX(ha) && !test_bit(AF_IRQ_ATTACHED, &ha->flags)) {
|
||||
ql4_printk(KERN_WARNING, ha, "%s: Skipping retry of adapter initialization\n",
|
||||
__func__);
|
||||
goto skip_retry_init;
|
||||
}
|
||||
|
||||
while ((!test_bit(AF_ONLINE, &ha->flags)) &&
|
||||
init_retry_count++ < MAX_INIT_RETRIES) {
|
||||
|
Loading…
Reference in New Issue
Block a user