diff options
author | Mark Brown <broonie@linaro.org> | 2013-09-01 22:15:59 +0200 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-09-01 22:15:59 +0200 |
commit | 5df498a27ab385294fdb7cad19c623d4da94a780 (patch) | |
tree | 6568359e039f589faccf9f9b2f5d9d8e5b0d8c54 /sound | |
parent | Merge remote-tracking branch 'asoc/topic/fsl' into tmp (diff) | |
parent | ASoC: ssm2602: Fix cache sync (diff) | |
download | linux-5df498a27ab385294fdb7cad19c623d4da94a780.tar.xz linux-5df498a27ab385294fdb7cad19c623d4da94a780.zip |
Merge remote-tracking branch 'asoc/topic/ssm2602' into tmp
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/codecs/ssm2602.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/soc/codecs/ssm2602.c b/sound/soc/codecs/ssm2602.c index f8d30e5f6371..492644e67ace 100644 --- a/sound/soc/codecs/ssm2602.c +++ b/sound/soc/codecs/ssm2602.c @@ -561,8 +561,9 @@ static int ssm2602_suspend(struct snd_soc_codec *codec) static int ssm2602_resume(struct snd_soc_codec *codec) { - snd_soc_cache_sync(codec); + struct ssm2602_priv *ssm2602 = snd_soc_codec_get_drvdata(codec); + regcache_sync(ssm2602->regmap); ssm2602_set_bias_level(codec, SND_SOC_BIAS_STANDBY); return 0; |