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

Commit dc0d5979 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "soc: qcom: hab: add IRQF_NO_SUSPEND to irq flags."

parents 203e9786 faf465d7
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -147,9 +147,8 @@ static int create_dispatcher(struct physical_channel *pchan)

	pr_debug("request_irq: irq = %d, pchan name = %s",
			dev->irq, pchan->name);
	ret = request_irq(dev->irq, shm_irq_handler, IRQF_SHARED,
		pchan->name, pchan);

	ret = request_irq(dev->irq, shm_irq_handler, IRQF_SHARED |
			IRQF_NO_SUSPEND, pchan->name, pchan);
	if (ret)
		pr_err("request_irq for %s failed: %d\n",
			pchan->name, ret);