Commit 8dfedafb authored by Kuninori Morimoto's avatar Kuninori Morimoto Committed by Mark Brown

ASoC: soc-dai: add snd_soc_dai_compr_set_params()

dai related function should be implemented at soc-dai.c.
This patch adds snd_soc_dai_compr_set_params().
Signed-off-by: default avatarKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Reviewed-By: default avatarRanjani Sridharan <ranjani.sridharan@linux.intel.com>
Link: https://lore.kernel.org/r/87lfmlssiv.wl-kuninori.morimoto.gx@renesas.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent eb08411b
...@@ -176,6 +176,9 @@ void snd_soc_dai_compr_shutdown(struct snd_soc_dai *dai, ...@@ -176,6 +176,9 @@ void snd_soc_dai_compr_shutdown(struct snd_soc_dai *dai,
struct snd_compr_stream *cstream); struct snd_compr_stream *cstream);
int snd_soc_dai_compr_trigger(struct snd_soc_dai *dai, int snd_soc_dai_compr_trigger(struct snd_soc_dai *dai,
struct snd_compr_stream *cstream, int cmd); struct snd_compr_stream *cstream, int cmd);
int snd_soc_dai_compr_set_params(struct snd_soc_dai *dai,
struct snd_compr_stream *cstream,
struct snd_compr_params *params);
struct snd_soc_dai_ops { struct snd_soc_dai_ops {
/* /*
......
...@@ -443,11 +443,9 @@ static int soc_compr_set_params(struct snd_compr_stream *cstream, ...@@ -443,11 +443,9 @@ static int soc_compr_set_params(struct snd_compr_stream *cstream,
* that these callbacks will configure everything for this compress * that these callbacks will configure everything for this compress
* path, like configuring a PCM port for a CODEC. * path, like configuring a PCM port for a CODEC.
*/ */
if (cpu_dai->driver->cops && cpu_dai->driver->cops->set_params) { ret = snd_soc_dai_compr_set_params(cpu_dai, cstream, params);
ret = cpu_dai->driver->cops->set_params(cstream, params, cpu_dai);
if (ret < 0) if (ret < 0)
goto err; goto err;
}
ret = soc_compr_components_set_params(cstream, params); ret = soc_compr_components_set_params(cstream, params);
if (ret < 0) if (ret < 0)
...@@ -513,11 +511,9 @@ static int soc_compr_set_params_fe(struct snd_compr_stream *cstream, ...@@ -513,11 +511,9 @@ static int soc_compr_set_params_fe(struct snd_compr_stream *cstream,
if (ret < 0) if (ret < 0)
goto out; goto out;
if (cpu_dai->driver->cops && cpu_dai->driver->cops->set_params) { ret = snd_soc_dai_compr_set_params(cpu_dai, cstream, params);
ret = cpu_dai->driver->cops->set_params(cstream, params, cpu_dai);
if (ret < 0) if (ret < 0)
goto out; goto out;
}
ret = soc_compr_components_set_params(cstream, params); ret = soc_compr_components_set_params(cstream, params);
if (ret < 0) if (ret < 0)
......
...@@ -539,3 +539,17 @@ int snd_soc_dai_compr_trigger(struct snd_soc_dai *dai, ...@@ -539,3 +539,17 @@ int snd_soc_dai_compr_trigger(struct snd_soc_dai *dai,
return soc_dai_ret(dai, ret); return soc_dai_ret(dai, ret);
} }
EXPORT_SYMBOL_GPL(snd_soc_dai_compr_trigger); EXPORT_SYMBOL_GPL(snd_soc_dai_compr_trigger);
int snd_soc_dai_compr_set_params(struct snd_soc_dai *dai,
struct snd_compr_stream *cstream,
struct snd_compr_params *params)
{
int ret = 0;
if (dai->driver->cops &&
dai->driver->cops->set_params)
ret = dai->driver->cops->set_params(cstream, params, dai);
return soc_dai_ret(dai, ret);
}
EXPORT_SYMBOL_GPL(snd_soc_dai_compr_set_params);
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment