diff options
-rw-r--r-- | drivers/scsi/qla4xxx/ql4_isr.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/scsi/qla4xxx/ql4_isr.c b/drivers/scsi/qla4xxx/ql4_isr.c index ca862b12a8d..90a217ff3a3 100644 --- a/drivers/scsi/qla4xxx/ql4_isr.c +++ b/drivers/scsi/qla4xxx/ql4_isr.c | |||
@@ -554,7 +554,8 @@ static void qla4xxx_isr_decode_mailbox(struct scsi_qla_host * ha, | |||
554 | /* mbox_sts[2] = Old ACB state | 554 | /* mbox_sts[2] = Old ACB state |
555 | * mbox_sts[3] = new ACB state */ | 555 | * mbox_sts[3] = new ACB state */ |
556 | if ((mbox_sts[3] == ACB_STATE_VALID) && | 556 | if ((mbox_sts[3] == ACB_STATE_VALID) && |
557 | (mbox_sts[2] == ACB_STATE_TENTATIVE)) | 557 | ((mbox_sts[2] == ACB_STATE_TENTATIVE) || |
558 | (mbox_sts[2] == ACB_STATE_ACQUIRING))) | ||
558 | set_bit(DPC_GET_DHCP_IP_ADDR, &ha->dpc_flags); | 559 | set_bit(DPC_GET_DHCP_IP_ADDR, &ha->dpc_flags); |
559 | else if ((mbox_sts[3] == ACB_STATE_ACQUIRING) && | 560 | else if ((mbox_sts[3] == ACB_STATE_ACQUIRING) && |
560 | (mbox_sts[2] == ACB_STATE_VALID)) | 561 | (mbox_sts[2] == ACB_STATE_VALID)) |