diff options
author | Jin Yao <yao.jin@linux.intel.com> | 2015-04-13 02:20:54 -0400 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-04-15 12:08:08 -0400 |
commit | ac98b4c015b50b1e452f8d55b612320be7f80825 (patch) | |
tree | b8073d2d8ee75cd768599e481d141105bbd720a0 /sound/soc | |
parent | 7667428f80526d908124e0647ac5dbe3dad88900 (diff) |
ASoC: Intel: Remove invalid kfree of devm allocated data
kbuild robot reports following warning:
"sound/soc/intel/haswell/sst-haswell-ipc.c:2204:1-6:
WARNING: invalid free of devm_ allocated data"
As julia explains to me, the memory allocated with devm_kalloc
is freed automatically on failure of a probe function. So this
kfree should be removed otherwise the double free will be got in
error handler path.
Signed-off-by: Jin Yao <yao.jin@linux.intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc')
-rw-r--r-- | sound/soc/intel/haswell/sst-haswell-ipc.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sound/soc/intel/haswell/sst-haswell-ipc.c b/sound/soc/intel/haswell/sst-haswell-ipc.c index 344a1e9bbce5..324eceb07b25 100644 --- a/sound/soc/intel/haswell/sst-haswell-ipc.c +++ b/sound/soc/intel/haswell/sst-haswell-ipc.c | |||
@@ -2201,7 +2201,6 @@ dma_err: | |||
2201 | dsp_new_err: | 2201 | dsp_new_err: |
2202 | sst_ipc_fini(ipc); | 2202 | sst_ipc_fini(ipc); |
2203 | ipc_init_err: | 2203 | ipc_init_err: |
2204 | kfree(hsw); | ||
2205 | return ret; | 2204 | return ret; |
2206 | } | 2205 | } |
2207 | EXPORT_SYMBOL_GPL(sst_hsw_dsp_init); | 2206 | EXPORT_SYMBOL_GPL(sst_hsw_dsp_init); |