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

Commit 195a5658 authored by Channagoud Kadabi's avatar Channagoud Kadabi
Browse files

drivers: edac: Configure the interrupt as level triggered



As per the interrupt maps the ecc interrupt for llcc is level triggered.
Update the irq request call to pass the right trigger.

Change-Id: I029ca8fcf5207d2dffdb13ebc627c64811cf196a
Signed-off-by: default avatarChannagoud Kadabi <ckadabi@codeaurora.org>
parent 13d9d336
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -389,7 +389,7 @@ static int qcom_llcc_erp_probe(struct platform_device *pdev)
		}

		rc = devm_request_irq(dev, drv->ecc_irq, llcc_ecc_irq_handler,
				IRQF_TRIGGER_RISING, "llcc_ecc", edev_ctl);
				IRQF_TRIGGER_HIGH, "llcc_ecc", edev_ctl);
		if (rc) {
			dev_err(dev, "failed to request ecc irq\n");
			goto out;