summaryrefslogtreecommitdiffstats
path: root/sound/soc/soc-core.c
diff options
context:
space:
mode:
authorLars-Peter Clausen2015-03-30 21:04:50 +0200
committerMark Brown2015-04-01 22:28:04 +0200
commit37660b6daf6d28bb2206c95ec75c8063f2db1606 (patch)
tree992635c025c2be8b7f120b3a441d071fd738eb8d /sound/soc/soc-core.c
parentASoC: wm8753: Cleanup manual bias level transitions (diff)
downloadkernel-qcow2-linux-37660b6daf6d28bb2206c95ec75c8063f2db1606.tar.gz
kernel-qcow2-linux-37660b6daf6d28bb2206c95ec75c8063f2db1606.tar.xz
kernel-qcow2-linux-37660b6daf6d28bb2206c95ec75c8063f2db1606.zip
ASoC: Remove suspend_bias_level from DAPM context struct
The only two users of the suspend_bias_level field were two rather old drivers which weren't exactly doing things by the book. Those drivers have been updated and field is now unused and can be removed. Signed-off-by: Lars-Peter Clausen <lars@metafoo.de> Acked-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/soc-core.c')
-rw-r--r--sound/soc/soc-core.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c
index 30579ca5bacb..72601a86a748 100644
--- a/sound/soc/soc-core.c
+++ b/sound/soc/soc-core.c
@@ -583,15 +583,9 @@ int snd_soc_suspend(struct device *dev)
cpu_dai->driver->suspend(cpu_dai);
}
- /* close any waiting streams and save state */
- for (i = 0; i < card->num_rtd; i++) {
- struct snd_soc_dai **codec_dais = card->rtd[i].codec_dais;
+ /* close any waiting streams */
+ for (i = 0; i < card->num_rtd; i++)
flush_delayed_work(&card->rtd[i].delayed_work);
- for (j = 0; j < card->rtd[i].num_codecs; j++) {
- codec_dais[j]->codec->dapm.suspend_bias_level =
- codec_dais[j]->codec->dapm.bias_level;
- }
- }
for (i = 0; i < card->num_rtd; i++) {