diff options
author | Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> | 2020-05-26 15:36:36 -0500 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2020-05-27 14:06:56 +0100 |
commit | 68224376bc2a0508f57bff67c8dcd2b5761dc939 (patch) | |
tree | d1c21b1008fc6821f4b5a1bcbbe101d5290a4da8 /sound/soc/intel/boards/cht_bsw_rt5672.c | |
parent | 512e76724ffd07c6a5eb7d93c79d160e85465228 (diff) | |
download | linux-stable-68224376bc2a0508f57bff67c8dcd2b5761dc939.tar.gz linux-stable-68224376bc2a0508f57bff67c8dcd2b5761dc939.tar.bz2 linux-stable-68224376bc2a0508f57bff67c8dcd2b5761dc939.zip |
ASoC: Intel: byt/cht: add .pm_ops
Add required .pm_ops to support suspend/resume on baytrail/cherrytrail
machines.
This .pm_ops is conditionally-added to avoid impacting the legacy
driver where power management is handled differently.
Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Tested-by: Enric Balletbo i Serra <enric.balletbo@collabora.com>
Reviewed-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
Link: https://lore.kernel.org/r/20200526203640.25980-5-pierre-louis.bossart@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/intel/boards/cht_bsw_rt5672.c')
-rw-r--r-- | sound/soc/intel/boards/cht_bsw_rt5672.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sound/soc/intel/boards/cht_bsw_rt5672.c b/sound/soc/intel/boards/cht_bsw_rt5672.c index 097023a3ec14..7a43c70a1378 100644 --- a/sound/soc/intel/boards/cht_bsw_rt5672.c +++ b/sound/soc/intel/boards/cht_bsw_rt5672.c @@ -459,6 +459,9 @@ static int snd_cht_mc_probe(struct platform_device *pdev) static struct platform_driver snd_cht_mc_driver = { .driver = { .name = "cht-bsw-rt5672", +#if IS_ENABLED(CONFIG_SND_SOC_SOF_BAYTRAIL) + .pm = &snd_soc_pm_ops, +#endif }, .probe = snd_cht_mc_probe, }; |