Skip to content

Commit

Permalink
ASoC: soc-core: Fix the error return code in snd_soc_of_parse_audio_r…
Browse files Browse the repository at this point in the history
…outing()

[ Upstream commit 7d3865a ]

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>
  • Loading branch information
Zhen Lei authored and gregkh committed Jul 20, 2021
1 parent 8e18158 commit 3dd2a9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sound/soc/soc-core.c
Expand Up @@ -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++) {
Expand Down

0 comments on commit 3dd2a9d

Please sign in to comment.