Commit 91d5e6b4 authored by Liam Girdwood's avatar Liam Girdwood Committed by Mark Brown

ASoC: pcm - rename snd_codec_close() to snd_pcm_close().

Make sure we follow naming convention for all PCM ops.
Signed-off-by: default avatarLiam Girdwood <lrg@ti.com>
Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent b8c0dab9
...@@ -268,7 +268,7 @@ static void close_delayed_work(struct work_struct *work) ...@@ -268,7 +268,7 @@ static void close_delayed_work(struct work_struct *work)
* freed here. The cpu DAI, codec DAI, machine and platform are also * freed here. The cpu DAI, codec DAI, machine and platform are also
* shutdown. * shutdown.
*/ */
static int soc_codec_close(struct snd_pcm_substream *substream) static int soc_pcm_close(struct snd_pcm_substream *substream)
{ {
struct snd_soc_pcm_runtime *rtd = substream->private_data; struct snd_soc_pcm_runtime *rtd = substream->private_data;
struct snd_soc_platform *platform = rtd->platform; struct snd_soc_platform *platform = rtd->platform;
...@@ -567,7 +567,7 @@ static snd_pcm_uframes_t soc_pcm_pointer(struct snd_pcm_substream *substream) ...@@ -567,7 +567,7 @@ static snd_pcm_uframes_t soc_pcm_pointer(struct snd_pcm_substream *substream)
/* ASoC PCM operations */ /* ASoC PCM operations */
static struct snd_pcm_ops soc_pcm_ops = { static struct snd_pcm_ops soc_pcm_ops = {
.open = soc_pcm_open, .open = soc_pcm_open,
.close = soc_codec_close, .close = soc_pcm_close,
.hw_params = soc_pcm_hw_params, .hw_params = soc_pcm_hw_params,
.hw_free = soc_pcm_hw_free, .hw_free = soc_pcm_hw_free,
.prepare = soc_pcm_prepare, .prepare = soc_pcm_prepare,
......
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