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

Commit dc33e3aa authored by Chris Lew's avatar Chris Lew Committed by Ramakrishnan Ganesh
Browse files

soc: qcom: glink: qmp: Remove IRQF_NO_SUSPEND



Do not use IRQF_NO_SUSPEND with enable_irq_wake.

Change-Id: Ice9566ec98bb358b2ba4cec560477c079e889f52
Signed-off-by: default avatarChris Lew <clew@codeaurora.org>
Signed-off-by: default avatarRamakrishnan Ganesh <ramakris@codeaurora.org>
parent 4c446fd4
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
/* Copyright (c) 2017, The Linux Foundation. All rights reserved.
/* Copyright (c) 2017-2018, The Linux Foundation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 and
@@ -893,7 +893,7 @@ static int qmp_mbox_probe(struct platform_device *pdev)
								mdev->name);

	ret = devm_request_irq(&pdev->dev, mdev->rx_irq_line, qmp_irq_handler,
		IRQF_TRIGGER_RISING | IRQF_NO_SUSPEND | IRQF_SHARED,
		IRQF_TRIGGER_RISING | IRQF_SHARED,
		edge_node->name, mdev);
	if (ret < 0) {
		qmp_mbox_remove(pdev);
+1 −1
Original line number Diff line number Diff line
@@ -2503,7 +2503,7 @@ static int glink_smem_native_probe(struct platform_device *pdev)

	einfo->irq_line = irq_line;
	rc = request_irq(irq_line, irq_handler,
			IRQF_TRIGGER_RISING | IRQF_NO_SUSPEND | IRQF_SHARED,
			IRQF_TRIGGER_RISING | IRQF_SHARED,
			node->name, einfo);
	if (rc < 0) {
		pr_err("%s: request_irq on %d failed: %d\n", __func__, irq_line,