Skip to content

Commit

Permalink
ASoC: Use standard cache sync for WM8904
Browse files Browse the repository at this point in the history
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
  • Loading branch information
Mark Brown committed Jan 20, 2012
1 parent 93e26d4 commit 274eb8f
Showing 1 changed file with 1 addition and 27 deletions.
28 changes: 1 addition & 27 deletions sound/soc/codecs/wm8904.c
Original file line number Diff line number Diff line change
Expand Up @@ -2088,32 +2088,6 @@ static int wm8904_digital_mute(struct snd_soc_dai *codec_dai, int mute)
return 0;
}

static void wm8904_sync_cache(struct snd_soc_codec *codec)
{
u16 *reg_cache = codec->reg_cache;
int i;

if (!codec->cache_sync)
return;

codec->cache_only = 0;

/* Sync back cached values if they're different from the
* hardware default.
*/
for (i = 1; i < codec->driver->reg_cache_size; i++) {
if (!wm8904_access[i].writable)
continue;

if (reg_cache[i] == wm8904_reg[i])
continue;

snd_soc_write(codec, i, reg_cache[i]);
}

codec->cache_sync = 0;
}

static int wm8904_set_bias_level(struct snd_soc_codec *codec,
enum snd_soc_bias_level level)
{
Expand Down Expand Up @@ -2146,7 +2120,7 @@ static int wm8904_set_bias_level(struct snd_soc_codec *codec,
return ret;
}

wm8904_sync_cache(codec);
snd_soc_cache_sync(codec);

/* Enable bias */
snd_soc_update_bits(codec, WM8904_BIAS_CONTROL_0,
Expand Down

0 comments on commit 274eb8f

Please sign in to comment.