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

Commit e46441df 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: glink_smem_native_xprt: Use IRQF_SHARED"

parents b3470a1c 8294e54f
Loading
Loading
Loading
Loading
+4 −4
Original line number Original line Diff line number Diff line
@@ -1816,7 +1816,7 @@ static int glink_smem_native_probe(struct platform_device *pdev)


	einfo->irq_line = irq_line;
	einfo->irq_line = irq_line;
	rc = request_irq(irq_line, irq_handler,
	rc = request_irq(irq_line, irq_handler,
					IRQF_TRIGGER_RISING | IRQF_NO_SUSPEND,
			IRQF_TRIGGER_RISING | IRQF_NO_SUSPEND | IRQF_SHARED,
			node->name, einfo);
			node->name, einfo);
	if (rc < 0) {
	if (rc < 0) {
		pr_err("%s: request_irq on %d failed: %d\n", __func__, irq_line,
		pr_err("%s: request_irq on %d failed: %d\n", __func__, irq_line,
@@ -2057,7 +2057,7 @@ static int glink_rpm_native_probe(struct platform_device *pdev)


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