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

Commit b3470a1c 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: smd: Use IRQF_SHARED"

parents 5316ddb0 dfd6e0b1
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
/* drivers/soc/qcom/smd_init_dt.c
 *
 * Copyright (c) 2013-2014, The Linux Foundation. All rights reserved.
 * Copyright (c) 2013-2015, The Linux Foundation. All rights reserved.
 *
 * This software is licensed under the terms of the GNU General Public
 * License version 2, as published by the Free Software Foundation, and
@@ -261,9 +261,9 @@ static int msm_smd_probe(struct platform_device *pdev)

	ret = request_irq(irq_line,
			private_irq->irq_handler,
				IRQF_TRIGGER_RISING | IRQF_NO_SUSPEND,
			IRQF_TRIGGER_RISING | IRQF_NO_SUSPEND | IRQF_SHARED,
			node->name,
				NULL);
			&pdev->dev);
	if (ret < 0) {
		pr_err("%s: request_irq() failed on %d\n", __func__, irq_line);
		return ret;