2014-04-13 20:46:43

by Christian Engelmayer

[permalink] [raw]
Subject: [PATCH] ASoC: Intel: Fix a self assignment in sst_mem_block_alloc_scratch()

Remove a self assignment in sst_mem_block_alloc_scratch(). When calculating
buffer sizes there is no need for statements without effect. Detected by
Coverity: CID 1195249.

Signed-off-by: Christian Engelmayer <[email protected]>
---
sound/soc/intel/sst-firmware.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/sound/soc/intel/sst-firmware.c b/sound/soc/intel/sst-firmware.c
index f768710..f24619a 100644
--- a/sound/soc/intel/sst-firmware.c
+++ b/sound/soc/intel/sst-firmware.c
@@ -505,9 +505,7 @@ struct sst_module *sst_mem_block_alloc_scratch(struct sst_dsp *dsp)

/* calculate required scratch size */
list_for_each_entry(sst_module, &dsp->module_list, list) {
- if (scratch->s.size > sst_module->s.size)
- scratch->s.size = scratch->s.size;
- else
+ if (scratch->s.size < sst_module->s.size)
scratch->s.size = sst_module->s.size;
}

--
1.8.3.2


Attachments:
signature.asc (836.00 B)

2014-04-15 11:13:53

by Mark Brown

[permalink] [raw]
Subject: Re: [PATCH] ASoC: Intel: Fix a self assignment in sst_mem_block_alloc_scratch()

On Sun, Apr 13, 2014 at 10:46:31PM +0200, Christian Engelmayer wrote:
> Remove a self assignment in sst_mem_block_alloc_scratch(). When calculating
> buffer sizes there is no need for statements without effect. Detected by
> Coverity: CID 1195249.

Applied, thanks.


Attachments:
(No filename) (266.00 B)
signature.asc (836.00 B)
Digital signature
Download all attachments