|
@@ -78,8 +78,8 @@ static int snd_soc_flat_cache_sync(struct snd_soc_codec *codec)
|
|
|
ret = snd_soc_cache_read(codec, i, &val);
|
|
|
if (ret)
|
|
|
return ret;
|
|
|
- if (codec->reg_def_copy)
|
|
|
- if (snd_soc_get_cache_val(codec->reg_def_copy,
|
|
|
+ if (codec_drv->reg_cache_default)
|
|
|
+ if (snd_soc_get_cache_val(codec_drv->reg_cache_default,
|
|
|
i, codec_drv->reg_word_size) == val)
|
|
|
continue;
|
|
|
|
|
@@ -121,8 +121,10 @@ static int snd_soc_flat_cache_exit(struct snd_soc_codec *codec)
|
|
|
|
|
|
static int snd_soc_flat_cache_init(struct snd_soc_codec *codec)
|
|
|
{
|
|
|
- if (codec->reg_def_copy)
|
|
|
- codec->reg_cache = kmemdup(codec->reg_def_copy,
|
|
|
+ const struct snd_soc_codec_driver *codec_drv = codec->driver;
|
|
|
+
|
|
|
+ if (codec_drv->reg_cache_default)
|
|
|
+ codec->reg_cache = kmemdup(codec_drv->reg_cache_default,
|
|
|
codec->reg_size, GFP_KERNEL);
|
|
|
else
|
|
|
codec->reg_cache = kzalloc(codec->reg_size, GFP_KERNEL);
|