mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-18 18:43:59 +08:00
ASoC: soc-dai: add snd_soc_dai_compr_get_params()
dai related function should be implemented at soc-dai.c. This patch adds snd_soc_dai_compr_get_params(). Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Reviewed-By: Ranjani Sridharan <ranjani.sridharan@linux.intel.com> Link: https://lore.kernel.org/r/87k125ssir.wl-kuninori.morimoto.gx@renesas.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
8dfedafb5c
commit
adbef54326
@ -179,6 +179,9 @@ int snd_soc_dai_compr_trigger(struct snd_soc_dai *dai,
|
|||||||
int snd_soc_dai_compr_set_params(struct snd_soc_dai *dai,
|
int snd_soc_dai_compr_set_params(struct snd_soc_dai *dai,
|
||||||
struct snd_compr_stream *cstream,
|
struct snd_compr_stream *cstream,
|
||||||
struct snd_compr_params *params);
|
struct snd_compr_params *params);
|
||||||
|
int snd_soc_dai_compr_get_params(struct snd_soc_dai *dai,
|
||||||
|
struct snd_compr_stream *cstream,
|
||||||
|
struct snd_codec *params);
|
||||||
|
|
||||||
struct snd_soc_dai_ops {
|
struct snd_soc_dai_ops {
|
||||||
/*
|
/*
|
||||||
|
@ -544,11 +544,9 @@ static int soc_compr_get_params(struct snd_compr_stream *cstream,
|
|||||||
|
|
||||||
mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass);
|
mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass);
|
||||||
|
|
||||||
if (cpu_dai->driver->cops && cpu_dai->driver->cops->get_params) {
|
ret = snd_soc_dai_compr_get_params(cpu_dai, cstream, params);
|
||||||
ret = cpu_dai->driver->cops->get_params(cstream, params, cpu_dai);
|
if (ret < 0)
|
||||||
if (ret < 0)
|
goto err;
|
||||||
goto err;
|
|
||||||
}
|
|
||||||
|
|
||||||
for_each_rtd_components(rtd, i, component) {
|
for_each_rtd_components(rtd, i, component) {
|
||||||
if (!component->driver->compress_ops ||
|
if (!component->driver->compress_ops ||
|
||||||
|
@ -553,3 +553,17 @@ int snd_soc_dai_compr_set_params(struct snd_soc_dai *dai,
|
|||||||
return soc_dai_ret(dai, ret);
|
return soc_dai_ret(dai, ret);
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(snd_soc_dai_compr_set_params);
|
EXPORT_SYMBOL_GPL(snd_soc_dai_compr_set_params);
|
||||||
|
|
||||||
|
int snd_soc_dai_compr_get_params(struct snd_soc_dai *dai,
|
||||||
|
struct snd_compr_stream *cstream,
|
||||||
|
struct snd_codec *params)
|
||||||
|
{
|
||||||
|
int ret = 0;
|
||||||
|
|
||||||
|
if (dai->driver->cops &&
|
||||||
|
dai->driver->cops->get_params)
|
||||||
|
ret = dai->driver->cops->get_params(cstream, params, dai);
|
||||||
|
|
||||||
|
return soc_dai_ret(dai, ret);
|
||||||
|
}
|
||||||
|
EXPORT_SYMBOL_GPL(snd_soc_dai_compr_get_params);
|
||||||
|
Loading…
Reference in New Issue
Block a user