diff options
author | Mark Brown <broonie@kernel.org> | 2015-03-04 15:42:43 -0500 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-03-04 15:42:43 -0500 |
commit | 2824ef9b81b0d440ed63e87f67f01f5cc942457f (patch) | |
tree | 2e93d8255a13d21d13fdf79ea6ce4e4243f95cbf /sound/soc | |
parent | 95d67c7fc2e5fa21befb1a07bc016748d9cd6192 (diff) | |
parent | 31f3032c1a5504259f6fa8e0c7f8d2d3e2f5db48 (diff) |
Merge remote-tracking branch 'asoc/fix/simple' into asoc-linus
Diffstat (limited to 'sound/soc')
-rw-r--r-- | sound/soc/generic/simple-card.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sound/soc/generic/simple-card.c b/sound/soc/generic/simple-card.c index f7c6734bd5da..fb550b5869d2 100644 --- a/sound/soc/generic/simple-card.c +++ b/sound/soc/generic/simple-card.c | |||
@@ -372,6 +372,11 @@ static int asoc_simple_card_dai_link_of(struct device_node *node, | |||
372 | strlen(dai_link->cpu_dai_name) + | 372 | strlen(dai_link->cpu_dai_name) + |
373 | strlen(dai_link->codec_dai_name) + 2, | 373 | strlen(dai_link->codec_dai_name) + 2, |
374 | GFP_KERNEL); | 374 | GFP_KERNEL); |
375 | if (!name) { | ||
376 | ret = -ENOMEM; | ||
377 | goto dai_link_of_err; | ||
378 | } | ||
379 | |||
375 | sprintf(name, "%s-%s", dai_link->cpu_dai_name, | 380 | sprintf(name, "%s-%s", dai_link->cpu_dai_name, |
376 | dai_link->codec_dai_name); | 381 | dai_link->codec_dai_name); |
377 | dai_link->name = dai_link->stream_name = name; | 382 | dai_link->name = dai_link->stream_name = name; |