mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
dmaengine/dw_dmac: Hibernation support in dw_dmac
The suspend and resume implementation is through dev_pm_ops in dmac. So in order to support hibernation, freeze, thaw, restore and poweroff features are required. Signed-off-by: Rajeev Kumar <rajeev-dlh.kumar@st.com> Acked-by: Viresh Kumar <viresh.kumar@st.com> Signed-off-by: Vinod Koul <vinod.koul@linux.intel.com>
This commit is contained in:
parent
91c1c9e36d
commit
7414a1b8b2
1 changed files with 4 additions and 0 deletions
|
@ -1562,6 +1562,10 @@ static int dw_resume_noirq(struct device *dev)
|
||||||
static const struct dev_pm_ops dw_dev_pm_ops = {
|
static const struct dev_pm_ops dw_dev_pm_ops = {
|
||||||
.suspend_noirq = dw_suspend_noirq,
|
.suspend_noirq = dw_suspend_noirq,
|
||||||
.resume_noirq = dw_resume_noirq,
|
.resume_noirq = dw_resume_noirq,
|
||||||
|
.freeze_noirq = dw_suspend_noirq,
|
||||||
|
.thaw_noirq = dw_resume_noirq,
|
||||||
|
.restore_noirq = dw_resume_noirq,
|
||||||
|
.poweroff_noirq = dw_suspend_noirq,
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_driver dw_driver = {
|
static struct platform_driver dw_driver = {
|
||||||
|
|
Loading…
Reference in a new issue