Commit 02bd90e8 authored by Vinod Koul's avatar Vinod Koul Committed by Mark Brown

ASoC: compress: use soc_xxx handlers for metadata

the compress metadata handlers were wrongly named sst_xxx
Signed-off-by: default avatarVinod Koul <vinod.koul@intel.com>
Signed-off-by: default avatarMark Brown <broonie@linaro.org>
parent 3b2f64d0
......@@ -334,7 +334,7 @@ static int soc_compr_copy(struct snd_compr_stream *cstream,
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_soc_pcm_runtime *rtd = cstream->private_data;
......@@ -347,7 +347,7 @@ static int sst_compr_set_metadata(struct snd_compr_stream *cstream,
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_soc_pcm_runtime *rtd = cstream->private_data;
......@@ -364,8 +364,8 @@ static struct snd_compr_ops soc_compr_ops = {
.open = soc_compr_open,
.free = soc_compr_free,
.set_params = soc_compr_set_params,
.set_metadata = sst_compr_set_metadata,
.get_metadata = sst_compr_get_metadata,
.set_metadata = soc_compr_set_metadata,
.get_metadata = soc_compr_get_metadata,
.get_params = soc_compr_get_params,
.trigger = soc_compr_trigger,
.pointer = soc_compr_pointer,
......
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