From: Zhen Lei Date: Thu, 17 Jun 2021 10:37:29 +0000 (+0800) Subject: ASoC: soc-core: Fix the error return code in snd_soc_of_parse_audio_routing() X-Git-Tag: v5.14-rc1~95^2~6^2^2~25 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7d3865a10b9ff2669c531d5ddd60bf46b3d48f1e;p=thirdparty%2Flinux.git ASoC: soc-core: Fix the error return code in snd_soc_of_parse_audio_routing() When devm_kcalloc() fails, the error code -ENOMEM should be returned instead of -EINVAL. Signed-off-by: Zhen Lei Link: https://lore.kernel.org/r/20210617103729.1918-1-thunder.leizhen@huawei.com Signed-off-by: Mark Brown --- diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c index 44e65f984a5c5..da3cd7cf58084 100644 --- a/sound/soc/soc-core.c +++ b/sound/soc/soc-core.c @@ -2957,7 +2957,7 @@ int snd_soc_of_parse_audio_routing(struct snd_soc_card *card, if (!routes) { dev_err(card->dev, "ASoC: Could not allocate DAPM route table\n"); - return -EINVAL; + return -ENOMEM; } for (i = 0; i < num_routes; i++) {