diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2016-12-19 07:37:18 +0000 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-01-09 19:31:21 +0000 |
commit | 10611e1b0b7ab2a82dd7838e5e928fa1501d353c (patch) | |
tree | 000d86300297af89a48ae26d8a0556c401ce5704 /sound/soc/soc-pcm.c | |
parent | fcff45f8e092c17d324028fb6f632fde98983f17 (diff) | |
download | linux-rpi-10611e1b0b7ab2a82dd7838e5e928fa1501d353c.tar.gz linux-rpi-10611e1b0b7ab2a82dd7838e5e928fa1501d353c.tar.bz2 linux-rpi-10611e1b0b7ab2a82dd7838e5e928fa1501d353c.zip |
ASoC: remove .bespoke_trigger from snd_soc_platform_driver
No existing platform is using .bespoke_trigger.
Let's remove it.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/soc-pcm.c')
-rw-r--r-- | sound/soc/soc-pcm.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/sound/soc/soc-pcm.c b/sound/soc/soc-pcm.c index a4c93a90b8e9..1739573dcd6a 100644 --- a/sound/soc/soc-pcm.c +++ b/sound/soc/soc-pcm.c @@ -1055,7 +1055,6 @@ static int soc_pcm_bespoke_trigger(struct snd_pcm_substream *substream, int cmd) { struct snd_soc_pcm_runtime *rtd = substream->private_data; - struct snd_soc_platform *platform = rtd->platform; struct snd_soc_dai *cpu_dai = rtd->cpu_dai; struct snd_soc_dai *codec_dai; int i, ret; @@ -1071,12 +1070,6 @@ static int soc_pcm_bespoke_trigger(struct snd_pcm_substream *substream, } } - if (platform->driver->bespoke_trigger) { - ret = platform->driver->bespoke_trigger(substream, cmd); - if (ret < 0) - return ret; - } - if (cpu_dai->driver->ops && cpu_dai->driver->ops->bespoke_trigger) { ret = cpu_dai->driver->ops->bespoke_trigger(substream, cmd, cpu_dai); if (ret < 0) |