Skip to content

Commit

Permalink
mfd: qcom_rpm: Drop use of IRQF_NO_SUSPEND flag
Browse files Browse the repository at this point in the history
The driver handles wakeup irq correctly using irq_set_irq_wake. There's
no need to use IRQF_NO_SUSPEND while registering the interrupt.

This patch removes the use of IRQF_NO_SUSPEND flag.

Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
  • Loading branch information
Sudeep Holla authored and Lee Jones committed Oct 30, 2015
1 parent 50346a1 commit ced7e09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/mfd/qcom_rpm.c
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,7 @@ static int qcom_rpm_probe(struct platform_device *pdev)
ret = devm_request_irq(&pdev->dev,
irq_ack,
qcom_rpm_ack_interrupt,
IRQF_TRIGGER_RISING | IRQF_NO_SUSPEND,
IRQF_TRIGGER_RISING,
"qcom_rpm_ack",
rpm);
if (ret) {
Expand Down

0 comments on commit ced7e09

Please sign in to comment.