aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sound/soc/soc-cache.c16
1 files changed, 4 insertions, 12 deletions
diff --git a/sound/soc/soc-cache.c b/sound/soc/soc-cache.c
index 9e534429ea63..19b29fb3ca4b 100644
--- a/sound/soc/soc-cache.c
+++ b/sound/soc/soc-cache.c
@@ -1400,8 +1400,8 @@ static int snd_soc_flat_cache_sync(struct snd_soc_codec *codec)
1400 ret = snd_soc_cache_read(codec, i, &val); 1400 ret = snd_soc_cache_read(codec, i, &val);
1401 if (ret) 1401 if (ret)
1402 return ret; 1402 return ret;
1403 if (codec_drv->reg_cache_default) 1403 if (codec->reg_def_copy)
1404 if (snd_soc_get_cache_val(codec_drv->reg_cache_default, 1404 if (snd_soc_get_cache_val(codec->reg_def_copy,
1405 i, codec_drv->reg_word_size) == val) 1405 i, codec_drv->reg_word_size) == val)
1406 continue; 1406 continue;
1407 ret = snd_soc_write(codec, i, val); 1407 ret = snd_soc_write(codec, i, val);
@@ -1446,16 +1446,8 @@ static int snd_soc_flat_cache_init(struct snd_soc_codec *codec)
1446 codec_drv = codec->driver; 1446 codec_drv = codec->driver;
1447 reg_size = codec_drv->reg_cache_size * codec_drv->reg_word_size; 1447 reg_size = codec_drv->reg_cache_size * codec_drv->reg_word_size;
1448 1448
1449 /* 1449 if (codec->reg_def_copy)
1450 * for flat compression, we don't need to keep a copy of the 1450 codec->reg_cache = kmemdup(codec->reg_def_copy,
1451 * original defaults register cache as it will definitely not
1452 * be marked as __devinitconst
1453 */
1454 kfree(codec->reg_def_copy);
1455 codec->reg_def_copy = NULL;
1456
1457 if (codec_drv->reg_cache_default)
1458 codec->reg_cache = kmemdup(codec_drv->reg_cache_default,
1459 reg_size, GFP_KERNEL); 1451 reg_size, GFP_KERNEL);
1460 else 1452 else
1461 codec->reg_cache = kzalloc(reg_size, GFP_KERNEL); 1453 codec->reg_cache = kzalloc(reg_size, GFP_KERNEL);