summaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorZhen Lei <thunder.leizhen@huawei.com>2021-06-17 18:37:29 +0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2021-07-20 16:05:43 +0200
commit3dd2a9daa765e67f9a008c08d6f3fdd82b1f3ae4 (patch)
tree3d9ba3e9030e6262cdb300c6267559880c6d4425 /sound
parent8e18158ea7876bb7a57ef727b11a6f58562df1f7 (diff)
downloadlinux-stable-3dd2a9daa765e67f9a008c08d6f3fdd82b1f3ae4.tar.gz
linux-stable-3dd2a9daa765e67f9a008c08d6f3fdd82b1f3ae4.tar.bz2
linux-stable-3dd2a9daa765e67f9a008c08d6f3fdd82b1f3ae4.zip
ASoC: soc-core: Fix the error return code in snd_soc_of_parse_audio_routing()
[ Upstream commit 7d3865a10b9ff2669c531d5ddd60bf46b3d48f1e ] When devm_kcalloc() fails, the error code -ENOMEM should be returned instead of -EINVAL. Signed-off-by: Zhen Lei <thunder.leizhen@huawei.com> Link: https://lore.kernel.org/r/20210617103729.1918-1-thunder.leizhen@huawei.com Signed-off-by: Mark Brown <broonie@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/soc-core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c
index b22674e3a89c..e677422c1058 100644
--- a/sound/soc/soc-core.c
+++ b/sound/soc/soc-core.c
@@ -2804,7 +2804,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++) {