diff options
author | Dimitris Papastamos <dp@opensource.wolfsonmicro.com> | 2013-11-01 15:56:53 +0000 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-11-01 10:48:35 -0700 |
commit | 7328823d0052bbdb15af162f9f510ced811bdfe8 (patch) | |
tree | 9fb48c56da5ef11a1de1130db68fafff66e92aa7 /sound | |
parent | 43bc3bf64b30cdfdffdc41e33bf21222e9396c42 (diff) | |
download | linux-7328823d0052bbdb15af162f9f510ced811bdfe8.tar.bz2 |
ASoC: wm_adsp: Release firmware on memory allocation failure
Signed-off-by: Dimitris Papastamos <dp@opensource.wolfsonmicro.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/codecs/wm_adsp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/soc/codecs/wm_adsp.c b/sound/soc/codecs/wm_adsp.c index 076da025ba84..4008ceb77c5b 100644 --- a/sound/soc/codecs/wm_adsp.c +++ b/sound/soc/codecs/wm_adsp.c @@ -689,7 +689,8 @@ static int wm_adsp_load(struct wm_adsp *dsp) &buf_list); if (!buf) { adsp_err(dsp, "Out of memory\n"); - return -ENOMEM; + ret = -ENOMEM; + goto out_fw; } ret = regmap_raw_write_async(regmap, reg, buf->buf, |