diff options
| author | Linux Build Service Account <lnxbuild@localhost> | 2016-09-12 14:42:29 -0700 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2016-09-12 14:42:28 -0700 |
| commit | b7bf6d2b634c0806a584e25d69e7b69b1d5781d4 (patch) | |
| tree | eb3f78b4a89177f124c0fb7dbb81ccbe758441a0 /include | |
| parent | e8afdbad3e09004958777fc5f19a94308e9d3c1f (diff) | |
| parent | b56e6e2c964e0d7c8e2603b79aa988f8b5b3b96c (diff) | |
Merge "icnss: Add support of suspend_noirq/resume_noirq"
Diffstat (limited to 'include')
| -rw-r--r-- | include/soc/qcom/icnss.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/soc/qcom/icnss.h b/include/soc/qcom/icnss.h index 8b64bf3b8de9..778ad8f702db 100644 --- a/include/soc/qcom/icnss.h +++ b/include/soc/qcom/icnss.h @@ -26,6 +26,10 @@ struct icnss_driver_ops { void (*crash_shutdown)(void *pdev); int (*suspend)(struct device *dev, pm_message_t state); int (*resume)(struct device *dev); + int (*pm_suspend)(struct device *dev); + int (*pm_resume)(struct device *dev); + int (*suspend_noirq)(struct device *dev); + int (*resume_noirq)(struct device *dev); }; |
