mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-01 16:14:13 +08:00
net: ipa: use dev PM wakeirq handling
Replace the enable_irq_wake() call with one to dev_pm_set_wake_irq() instead. This will let the dev PM framework automatically manage the the wakeup capability of the ipa IRQ and ensure that userspace requests to enable/disable wakeup for the IPA via sysfs are respected. Signed-off-by: Caleb Connolly <caleb.connolly@linaro.org> Reviewed-by: Alex Elder <elder@linaro.org> Link: https://lore.kernel.org/r/20230127202758.2913612-1-caleb.connolly@linaro.org Signed-off-by: Paolo Abeni <pabeni@redhat.com>
This commit is contained in:
parent
562c65486c
commit
df54fde451
@ -22,6 +22,7 @@
|
||||
#include <linux/types.h>
|
||||
#include <linux/interrupt.h>
|
||||
#include <linux/pm_runtime.h>
|
||||
#include <linux/pm_wakeirq.h>
|
||||
|
||||
#include "ipa.h"
|
||||
#include "ipa_reg.h"
|
||||
@ -269,9 +270,9 @@ struct ipa_interrupt *ipa_interrupt_config(struct ipa *ipa)
|
||||
goto err_kfree;
|
||||
}
|
||||
|
||||
ret = enable_irq_wake(irq);
|
||||
ret = dev_pm_set_wake_irq(dev, irq);
|
||||
if (ret) {
|
||||
dev_err(dev, "error %d enabling wakeup for \"ipa\" IRQ\n", ret);
|
||||
dev_err(dev, "error %d registering \"ipa\" IRQ as wakeirq\n", ret);
|
||||
goto err_free_irq;
|
||||
}
|
||||
|
||||
@ -289,11 +290,8 @@ err_kfree:
|
||||
void ipa_interrupt_deconfig(struct ipa_interrupt *interrupt)
|
||||
{
|
||||
struct device *dev = &interrupt->ipa->pdev->dev;
|
||||
int ret;
|
||||
|
||||
ret = disable_irq_wake(interrupt->irq);
|
||||
if (ret)
|
||||
dev_err(dev, "error %d disabling \"ipa\" IRQ wakeup\n", ret);
|
||||
dev_pm_clear_wake_irq(dev);
|
||||
free_irq(interrupt->irq, interrupt);
|
||||
kfree(interrupt);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user