]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
ASoC: tlv320aic3x: Complete the soc-cache conversion
authorJarkko Nikula <jhnikula@gmail.com>
Tue, 14 Sep 2010 13:59:47 +0000 (16:59 +0300)
committerLiam Girdwood <lrg@slimlogic.co.uk>
Wed, 15 Sep 2010 12:56:15 +0000 (13:56 +0100)
Complete the phasing out of aic3x_read_reg_cache, aic3x_write_reg_cache,
aic3x_read and aic3x_write calls.

This patch uses in aic3x_read the codec->hw_read that points to a function
implemented by soc-cache. Only use for aic3x_read is if wanting to read
volatile bits from those registers that has both read-only and read/write
bits. All other cases should use snd_soc_read.

Signed-off-by: Jarkko Nikula <jhnikula@gmail.com>
Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Liam Girdwood <lrg@slimlogic.co.uk>
sound/soc/codecs/tlv320aic3x.c

index 86e5a5868c3cf59b9c63042647a4f62bf594aa26..7b5f159cfaf11a702c2abea14cd0877aa2776932 100644 (file)
@@ -112,28 +112,21 @@ static const u8 aic3x_reg[AIC3X_CACHEREGNUM] = {
 };
 
 /*
- * write aic3x register cache
- */
-static inline void aic3x_write_reg_cache(struct snd_soc_codec *codec,
-                                        u8 reg, u8 value)
-{
-       u8 *cache = codec->reg_cache;
-       if (reg >= AIC3X_CACHEREGNUM)
-               return;
-       cache[reg] = value;
-}
-
-/*
- * read from the aic3x register space
+ * read from the aic3x register space. Only use for this function is if
+ * wanting to read volatile bits from those registers that has both read-only
+ * and read/write bits. All other cases should use snd_soc_read.
  */
 static int aic3x_read(struct snd_soc_codec *codec, unsigned int reg,
                      u8 *value)
 {
-       *value = reg & 0xff;
+       u8 *cache = codec->reg_cache;
+
+       if (reg >= AIC3X_CACHEREGNUM)
+               return -1;
 
-       value[0] = i2c_smbus_read_byte_data(codec->control_data, value[0]);
+       *value = codec->hw_read(codec, reg);
+       cache[reg] = *value;
 
-       aic3x_write_reg_cache(codec, reg, *value);
        return 0;
 }