ASoC: compress: use soc_xxx handlers for metadata
the compress metadata handlers were wrongly named sst_xxx Signed-off-by: Vinod Koul <vinod.koul@intel.com> Signed-off-by: Mark Brown <broonie@linaro.org>
This commit is contained in:
@@ -334,7 +334,7 @@ static int soc_compr_copy(struct snd_compr_stream *cstream,
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int sst_compr_set_metadata(struct snd_compr_stream *cstream,
|
static int soc_compr_set_metadata(struct snd_compr_stream *cstream,
|
||||||
struct snd_compr_metadata *metadata)
|
struct snd_compr_metadata *metadata)
|
||||||
{
|
{
|
||||||
struct snd_soc_pcm_runtime *rtd = cstream->private_data;
|
struct snd_soc_pcm_runtime *rtd = cstream->private_data;
|
||||||
@@ -347,7 +347,7 @@ static int sst_compr_set_metadata(struct snd_compr_stream *cstream,
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int sst_compr_get_metadata(struct snd_compr_stream *cstream,
|
static int soc_compr_get_metadata(struct snd_compr_stream *cstream,
|
||||||
struct snd_compr_metadata *metadata)
|
struct snd_compr_metadata *metadata)
|
||||||
{
|
{
|
||||||
struct snd_soc_pcm_runtime *rtd = cstream->private_data;
|
struct snd_soc_pcm_runtime *rtd = cstream->private_data;
|
||||||
@@ -364,8 +364,8 @@ static struct snd_compr_ops soc_compr_ops = {
|
|||||||
.open = soc_compr_open,
|
.open = soc_compr_open,
|
||||||
.free = soc_compr_free,
|
.free = soc_compr_free,
|
||||||
.set_params = soc_compr_set_params,
|
.set_params = soc_compr_set_params,
|
||||||
.set_metadata = sst_compr_set_metadata,
|
.set_metadata = soc_compr_set_metadata,
|
||||||
.get_metadata = sst_compr_get_metadata,
|
.get_metadata = soc_compr_get_metadata,
|
||||||
.get_params = soc_compr_get_params,
|
.get_params = soc_compr_get_params,
|
||||||
.trigger = soc_compr_trigger,
|
.trigger = soc_compr_trigger,
|
||||||
.pointer = soc_compr_pointer,
|
.pointer = soc_compr_pointer,
|
||||||
|
Reference in New Issue
Block a user