diff options
author | Sudeep Holla <sudeep.holla@arm.com> | 2015-09-25 13:39:13 +0100 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2015-10-30 17:19:40 +0000 |
commit | ced7e09355cd7f4434eb2c34c4fae450c2fee0e7 (patch) | |
tree | 457ea222f5fd4793dcb0b1bfd0d8670d2b213a9c /drivers/mfd/qcom_rpm.c | |
parent | 50346a1f1419250c2c7c1349757ef4e93136eef2 (diff) |
mfd: qcom_rpm: Drop use of IRQF_NO_SUSPEND flag
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>
Diffstat (limited to 'drivers/mfd/qcom_rpm.c')
-rw-r--r-- | drivers/mfd/qcom_rpm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/qcom_rpm.c b/drivers/mfd/qcom_rpm.c index 6afc9fabd94c..207a3bd68559 100644 --- a/drivers/mfd/qcom_rpm.c +++ b/drivers/mfd/qcom_rpm.c @@ -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) { |