projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
06e6d90
)
ASoC: soc-core: Fix the error return code in snd_soc_of_parse_audio_routing()
author
Zhen Lei
<thunder.leizhen@huawei.com>
Thu, 17 Jun 2021 10:37:29 +0000
(18:37 +0800)
committer
Mark Brown
<broonie@kernel.org>
Thu, 17 Jun 2021 12:47:04 +0000
(13:47 +0100)
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>
sound/soc/soc-core.c
patch
|
blob
|
history
diff --git
a/sound/soc/soc-core.c
b/sound/soc/soc-core.c
index 44e65f984a5c50b0551eecfbc556c1cfca808b0d..da3cd7cf580840362cfcc50d751325a083f7a61e 100644
(file)
--- 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 -E
INVAL
;
+ return -E
NOMEM
;
}
for (i = 0; i < num_routes; i++) {