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

Commit 4a45f275 authored by Prateek Sood's avatar Prateek Sood
Browse files

eud: avoid suspend and resume callback race with EUD IRQ



Use suspend_noirq and resume_noirq to avoid race of EUD IRQ
with suspend and resume during spoof detach and attach.

Change-Id: Id932de8bf86060993ef126ec98853403a033b10b
Signed-off-by: default avatarPrateek Sood <prsood@codeaurora.org>
parent ce01c38c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -670,8 +670,8 @@ static const struct of_device_id msm_eud_dt_match[] = {
MODULE_DEVICE_TABLE(of, msm_eud_dt_match);

static const struct dev_pm_ops msm_eud_dev_pm_ops = {
	.suspend = msm_eud_suspend,
	.resume = msm_eud_resume,
	.suspend_noirq = msm_eud_suspend,
	.resume_noirq = msm_eud_resume,
};

static struct platform_driver msm_eud_driver = {