summaryrefslogtreecommitdiff
path: root/sound/soc/sof
diff options
context:
space:
mode:
authorDaniel Baluta <daniel.baluta@nxp.com>2020-08-21 19:50:09 +0300
committerDaniel Baluta <daniel.baluta@nxp.com>2020-08-21 19:53:51 +0300
commitc1513d6b7bc54e9de2a0a99987e4c6e98a05deb6 (patch)
treee0adcbb1f8a34ac93ab3f29b5b86dda1d6500d07 /sound/soc/sof
parent4ee1ddfdcefce34df9290c9f1f531bb93a89608e (diff)
MLK-24263-9 ASoC: SOF: imx: Fix PM runtime handlers
Commit 89d64ed05dab ("MLK-24263-8 ASoC: SOF: Add support for system / runtime PM on i.MX8") introduced runtime PM handlers for i.MX8QM but forgot to add the same handlers for i.MX8QXP. Do it now! Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com>
Diffstat (limited to 'sound/soc/sof')
-rw-r--r--sound/soc/sof/imx/imx8.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/sof/imx/imx8.c b/sound/soc/sof/imx/imx8.c
index f6d934f8358e..28d5981e3aa9 100644
--- a/sound/soc/sof/imx/imx8.c
+++ b/sound/soc/sof/imx/imx8.c
@@ -523,8 +523,8 @@ struct snd_sof_dsp_ops sof_imx8x_ops = {
/* PM */
.suspend = imx8_dsp_suspend,
.resume = imx8_dsp_resume,
- .runtime_suspend = imx8_dsp_suspend,
- .runtime_resume = imx8_dsp_resume,
+ .runtime_suspend = imx8_dsp_runtime_suspend,
+ .runtime_resume = imx8_dsp_runtime_resume,
/* ALSA HW info flags */
.hw_info = SNDRV_PCM_INFO_MMAP |