diff options
-rw-r--r-- | sound/soc/soc-core.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c index 96bf381683f7..4274435853df 100644 --- a/sound/soc/soc-core.c +++ b/sound/soc/soc-core.c | |||
@@ -3507,11 +3507,13 @@ int snd_soc_register_codec(struct device *dev, | |||
3507 | * kernel might have freed the array by the time we initialize | 3507 | * kernel might have freed the array by the time we initialize |
3508 | * the cache. | 3508 | * the cache. |
3509 | */ | 3509 | */ |
3510 | codec->reg_def_copy = kmemdup(codec_drv->reg_cache_default, | 3510 | if (codec_drv->reg_cache_default) { |
3511 | reg_size, GFP_KERNEL); | 3511 | codec->reg_def_copy = kmemdup(codec_drv->reg_cache_default, |
3512 | if (!codec->reg_def_copy) { | 3512 | reg_size, GFP_KERNEL); |
3513 | ret = -ENOMEM; | 3513 | if (!codec->reg_def_copy) { |
3514 | goto fail; | 3514 | ret = -ENOMEM; |
3515 | goto fail; | ||
3516 | } | ||
3515 | } | 3517 | } |
3516 | } | 3518 | } |
3517 | 3519 | ||