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

Commit e749d328 authored by Wei Yongjun's avatar Wei Yongjun Committed by Corey Minyard
Browse files

ipmi/powernv: Fix error return code in ipmi_powernv_probe()



Fix to return a negative error code from the request_irq() error
handling case instead of 0, as done elsewhere in this function.

Fixes: dce143c3 ("ipmi/powernv: Convert to irq event interface")
Signed-off-by: default avatarWei Yongjun <weiyongjun1@huawei.com>
Reviewed-by: default avatarAlexey Kardashevskiy <aik@ozlabs.ru>
Signed-off-by: default avatarCorey Minyard <cminyard@mvista.com>
parent 5516e21a
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -250,8 +250,9 @@ static int ipmi_powernv_probe(struct platform_device *pdev)
		ipmi->irq = opal_event_request(prop);
	}

	if (request_irq(ipmi->irq, ipmi_opal_event, IRQ_TYPE_LEVEL_HIGH,
				"opal-ipmi", ipmi)) {
	rc = request_irq(ipmi->irq, ipmi_opal_event, IRQ_TYPE_LEVEL_HIGH,
			 "opal-ipmi", ipmi);
	if (rc) {
		dev_warn(dev, "Unable to request irq\n");
		goto err_dispose;
	}