Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bb5649f3 authored by Vikas Chaudhary's avatar Vikas Chaudhary Committed by James Bottomley
Browse files

[SCSI] qla4xxx: Return correct error status from func qla4xxx_request_irqs()

parent daa34eb4
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -1488,6 +1488,7 @@ void qla4xxx_process_aen(struct scsi_qla_host * ha, uint8_t process_aen)
int qla4xxx_request_irqs(struct scsi_qla_host *ha)
{
	int ret;
	int rval = QLA_ERROR;

	if (is_qla40XX(ha))
		goto try_intx;
@@ -1569,8 +1570,9 @@ int qla4xxx_request_irqs(struct scsi_qla_host *ha)
	ha->host->irq = ha->pdev->irq;
	ql4_printk(KERN_INFO, ha, "%s: irq %d attached\n",
		   __func__, ha->pdev->irq);
	rval = QLA_SUCCESS;
irq_not_attached:
	return ret;
	return rval;
}

void qla4xxx_free_irqs(struct scsi_qla_host *ha)