ASoC: Intel: Skylake: Fix to fail safely if module not available in path
If a module is not available in a pipeline, fail safely rather than causing oops. Signed-off-by: G Kranthi <gudishax.kranthikumar@intel.com> Signed-off-by: Subhransu S. Prusty <subhransu.s.prusty@intel.com> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
4a8b3a682b
commit
91ce54978c
|
@ -180,6 +180,9 @@ static int skl_pcm_open(struct snd_pcm_substream *substream,
|
||||||
snd_pcm_set_sync(substream);
|
snd_pcm_set_sync(substream);
|
||||||
|
|
||||||
mconfig = skl_tplg_fe_get_cpr_module(dai, substream->stream);
|
mconfig = skl_tplg_fe_get_cpr_module(dai, substream->stream);
|
||||||
|
if (!mconfig)
|
||||||
|
return -EINVAL;
|
||||||
|
|
||||||
skl_tplg_d0i3_get(skl, mconfig->d0i3_caps);
|
skl_tplg_d0i3_get(skl, mconfig->d0i3_caps);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in New Issue