MLK-24263-9 ASoC: SOF: imx: Fix PM runtime handlers

Commit 89d64ed05d ("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>
This commit is contained in:
Daniel Baluta 2020-08-21 19:50:09 +03:00
parent 4ee1ddfdce
commit c1513d6b7b

View File

@ -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 |