mirror of https://github.com/thesofproject/sof.git
host: don't free empty buffer list
Don't free empty buffer list on host component free. Signed-off-by: Tomasz Lauda <tomasz.lauda@linux.intel.com>
This commit is contained in:
parent
81e8a33b58
commit
3a9652d839
|
@ -423,14 +423,16 @@ static void host_free(struct comp_dev *dev)
|
|||
|
||||
trace_host("fre");
|
||||
|
||||
elem = list_first_item(&hd->config.elem_list,
|
||||
struct dma_sg_elem, list);
|
||||
|
||||
#if !defined CONFIG_DMA_GW
|
||||
dma_channel_put(hd->dma, hd->chan);
|
||||
#endif
|
||||
|
||||
if (!list_is_empty(&hd->config.elem_list)) {
|
||||
elem = list_first_item(&hd->config.elem_list,
|
||||
struct dma_sg_elem, list);
|
||||
rfree(elem);
|
||||
}
|
||||
|
||||
rfree(hd);
|
||||
rfree(dev);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue