aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/codecs/uda1380.c
diff options
context:
space:
mode:
authorLars-Peter Clausen <lars@metafoo.de>2015-04-27 16:13:25 -0400
committerMark Brown <broonie@kernel.org>2015-04-27 16:34:45 -0400
commitf4bf8d770b58862c2af9d17adc2fee05bef8f2c0 (patch)
tree0323e26496eb2ebe7cccae6239a03f90463a4b65 /sound/soc/codecs/uda1380.c
parentbd1204cb51f15d202f95222e873a94ed5d07b784 (diff)
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/codecs/uda1380.c')
-rw-r--r--sound/soc/codecs/uda1380.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/sound/soc/codecs/uda1380.c b/sound/soc/codecs/uda1380.c
index dc7778b6dd7f..cc5b1769958a 100644
--- a/sound/soc/codecs/uda1380.c
+++ b/sound/soc/codecs/uda1380.c
@@ -623,7 +623,6 @@ static int uda1380_set_bias_level(struct snd_soc_codec *codec,
623 for (reg = UDA1380_MVOL; reg < UDA1380_CACHEREGNUM; reg++) 623 for (reg = UDA1380_MVOL; reg < UDA1380_CACHEREGNUM; reg++)
624 set_bit(reg - 0x10, &uda1380_cache_dirty); 624 set_bit(reg - 0x10, &uda1380_cache_dirty);
625 } 625 }
626 codec->dapm.bias_level = level;
627 return 0; 626 return 0;
628} 627}
629 628