]> git.karo-electronics.de Git - linux-beck.git/commitdiff
ASoC: Remove snd_soc_update_bits_locked()
authorLars-Peter Clausen <lars@metafoo.de>
Tue, 22 Apr 2014 11:23:15 +0000 (13:23 +0200)
committerMark Brown <broonie@linaro.org>
Tue, 22 Apr 2014 12:24:24 +0000 (13:24 +0100)
There are no users of snd_soc_update_bits_locked() left and it is identical to
snd_soc_update_bits(). So it can be removed.

Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Mark Brown <broonie@linaro.org>
sound/soc/soc-io.c

index ac64fd7252b2806ff5d8a32f6da6d031620e627e..2ead9edd0d6391320291985be6f7aeeff3a51b25 100644 (file)
@@ -240,26 +240,6 @@ int snd_soc_update_bits(struct snd_soc_codec *codec, unsigned int reg,
 }
 EXPORT_SYMBOL_GPL(snd_soc_update_bits);
 
-/**
- * snd_soc_update_bits_locked - update codec register bits
- * @codec: audio codec
- * @reg: codec register
- * @mask: register mask
- * @value: new value
- *
- * Writes new register value, and takes the codec mutex.
- *
- * Returns 1 for change else 0.
- */
-int snd_soc_update_bits_locked(struct snd_soc_codec *codec,
-                              unsigned int reg, unsigned int mask,
-                              unsigned int value)
-{
-       return snd_soc_component_update_bits(&codec->component, reg, mask,
-               value);
-}
-EXPORT_SYMBOL_GPL(snd_soc_update_bits_locked);
-
 /**
  * snd_soc_test_bits - test register for change
  * @codec: audio codec