diff options
author | Lars-Peter Clausen <lars@metafoo.de> | 2015-04-27 22:13:25 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-04-27 21:34:45 +0100 |
commit | f4bf8d770b58862c2af9d17adc2fee05bef8f2c0 (patch) | |
tree | 0323e26496eb2ebe7cccae6239a03f90463a4b65 /sound/soc/soc-dapm.c | |
parent | bd1204cb51f15d202f95222e873a94ed5d07b784 (diff) | |
download | linux-f4bf8d770b58862c2af9d17adc2fee05bef8f2c0.tar.bz2 |
ASoC: Move bias level update to the core
All drivers have the same line at the end of the set_bias_level callback to
update the bias_level state. Move this update into
snd_soc_dapm_force_bias_level() and remove them from the drivers.
Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/soc-dapm.c')
-rw-r--r-- | sound/soc/soc-dapm.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sound/soc/soc-dapm.c b/sound/soc/soc-dapm.c index b24782b50809..79b947820231 100644 --- a/sound/soc/soc-dapm.c +++ b/sound/soc/soc-dapm.c @@ -550,6 +550,9 @@ int snd_soc_dapm_force_bias_level(struct snd_soc_dapm_context *dapm, if (dapm->set_bias_level) ret = dapm->set_bias_level(dapm, level); + if (ret == 0) + dapm->bias_level = level; + return ret; } EXPORT_SYMBOL_GPL(snd_soc_dapm_force_bias_level); |