diff options
author | Luo Meng <luomeng12@huawei.com> | 2020-11-23 21:38:39 +0800 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2020-11-25 12:54:03 +0000 |
commit | 3fba05a2832f93b4d0cd4204f771fdae0d823114 (patch) | |
tree | e6b713ed9d5977f6a2d087e1e9ae23a76fb88a1c /sound | |
parent | b1824968221ccc498625750d8c49cf0d7d39a4de (diff) | |
download | linux-3fba05a2832f93b4d0cd4204f771fdae0d823114.tar.gz linux-3fba05a2832f93b4d0cd4204f771fdae0d823114.tar.bz2 linux-3fba05a2832f93b4d0cd4204f771fdae0d823114.zip |
ASoC: wm_adsp: fix error return code in wm_adsp_load()
Fix to return a negative error code from the error handling case
instead of 0 in function wm_adsp_load(), as done elsewhere in this
function.
Fixes: 170b1e123f38 ("ASoC: wm_adsp: Add support for new Halo core DSPs")
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Luo Meng <luomeng12@huawei.com>
Acked-by: Richard Fitzgerald <rf@opensource.cirrus.com>
Link: https://lore.kernel.org/r/20201123133839.4073787-1-luomeng12@huawei.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/codecs/wm_adsp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/codecs/wm_adsp.c b/sound/soc/codecs/wm_adsp.c index bcf18bf15a02..e61d00486c65 100644 --- a/sound/soc/codecs/wm_adsp.c +++ b/sound/soc/codecs/wm_adsp.c @@ -1937,6 +1937,7 @@ static int wm_adsp_load(struct wm_adsp *dsp) mem = wm_adsp_find_region(dsp, type); if (!mem) { adsp_err(dsp, "No region of type: %x\n", type); + ret = -EINVAL; goto out_fw; } |