dsp: Avoid excessive list iterations

Exit list iteration after the required conditions
for the loop has been satisfied to avoid additional
list iteration.

Change-Id: I96872d3be469420e613ec0244588a0a8ecb50e58
Signed-off-by: Vignesh Kulothungan <vigneshk@codeaurora.org>
This commit is contained in:
Vignesh Kulothungan
2018-01-04 13:49:12 -08:00
committed by Gerrit - the friendly Code Review server
parent 7289b0b631
commit 96ba1625dc

View File

@@ -8284,8 +8284,10 @@ static int __q6asm_read(struct audio_client *ac, bool is_custom_len_reqd,
list_for_each_safe(ptr, next, &ac->port[OUT].mem_map_handle) {
buf_node = list_entry(ptr, struct asm_buffer_node,
list);
if (buf_node->buf_phys_addr == ab->phys)
if (buf_node->buf_phys_addr == ab->phys) {
read.mem_map_handle = buf_node->mmap_hdl;
break;
}
}
dev_vdbg(ac->dev, "memory_map handle in q6asm_read: [%0x]:",
read.mem_map_handle);