diff options
author | Richard Fitzgerald <rf@opensource.wolfsonmicro.com> | 2016-04-26 17:06:20 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2016-04-26 17:37:30 +0100 |
commit | 2ab8e744a437d39619b323d7303fa2e6513274b2 (patch) | |
tree | d0ef23971623dc950298b93aa521e0f9600d0ed3 /sound/soc/codecs/arizona.c | |
parent | 8e42db1eaab6c2558dbc2e6c1428730df0a295f4 (diff) | |
download | op-kernel-dev-2ab8e744a437d39619b323d7303fa2e6513274b2.zip op-kernel-dev-2ab8e744a437d39619b323d7303fa2e6513274b2.tar.gz |
ASoC: arizona: No need to update_bits when writing AEC clock control
The bits in the ARIZONA_CLOCK_CONTROL register only respond to writes of
a '1', a write of '0' is ignored. So there's no need to use update_bits.
We can do a simple write to set bits.
Signed-off-by: Richard Fitzgerald <rf@opensource.wolfsonmicro.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/arizona.c')
-rw-r--r-- | sound/soc/codecs/arizona.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sound/soc/codecs/arizona.c b/sound/soc/codecs/arizona.c index 0caecc6..0239639 100644 --- a/sound/soc/codecs/arizona.c +++ b/sound/soc/codecs/arizona.c @@ -1124,7 +1124,6 @@ int arizona_anc_ev(struct snd_soc_dapm_widget *w, int event) { struct snd_soc_codec *codec = snd_soc_dapm_to_codec(w->dapm); - unsigned int mask = 0x3 << w->shift; unsigned int val; switch (event) { @@ -1138,7 +1137,7 @@ int arizona_anc_ev(struct snd_soc_dapm_widget *w, return 0; } - snd_soc_update_bits(codec, ARIZONA_CLOCK_CONTROL, mask, val); + snd_soc_write(codec, ARIZONA_CLOCK_CONTROL, val); return 0; } |