diff options
author | Liam Girdwood <liam.r.girdwood@linux.intel.com> | 2014-05-02 11:56:28 -0400 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-05-07 04:38:29 -0400 |
commit | 2b39aab18a84b2fa348d42d894ef986b290d67a0 (patch) | |
tree | 9be5ba520b1aeb33238b4dc2fa64c3f7d26d2603 | |
parent | e9024f0ba38a994c805743bc523693c5c7d7ccbc (diff) |
ASoC: Intel: Fix block offset calculations.
Block offset calculations are done in the contiguous allocator so
are not required here.
Signed-off-by: Liam Girdwood <liam.r.girdwood@linux.intel.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
-rw-r--r-- | sound/soc/intel/sst-firmware.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/sound/soc/intel/sst-firmware.c b/sound/soc/intel/sst-firmware.c index c38cfda8003c..928f228c38e7 100644 --- a/sound/soc/intel/sst-firmware.c +++ b/sound/soc/intel/sst-firmware.c | |||
@@ -244,8 +244,7 @@ static int block_alloc(struct sst_module *module, | |||
244 | /* do we span > 1 blocks */ | 244 | /* do we span > 1 blocks */ |
245 | if (data->size > block->size) { | 245 | if (data->size > block->size) { |
246 | ret = block_alloc_contiguous(module, data, | 246 | ret = block_alloc_contiguous(module, data, |
247 | block->offset + block->size, | 247 | block->offset, data->size); |
248 | data->size - block->size); | ||
249 | if (ret == 0) | 248 | if (ret == 0) |
250 | return ret; | 249 | return ret; |
251 | } | 250 | } |
@@ -341,7 +340,7 @@ static int block_alloc_fixed(struct sst_module *module, | |||
341 | 340 | ||
342 | err = block_alloc_contiguous(module, data, | 341 | err = block_alloc_contiguous(module, data, |
343 | block->offset + block->size, | 342 | block->offset + block->size, |
344 | data->size - block->size + data->offset - block->offset); | 343 | data->size - block->size); |
345 | if (err < 0) | 344 | if (err < 0) |
346 | return -ENOMEM; | 345 | return -ENOMEM; |
347 | 346 | ||
@@ -368,8 +367,7 @@ static int block_alloc_fixed(struct sst_module *module, | |||
368 | if (data->offset >= block->offset && data->offset < block_end) { | 367 | if (data->offset >= block->offset && data->offset < block_end) { |
369 | 368 | ||
370 | err = block_alloc_contiguous(module, data, | 369 | err = block_alloc_contiguous(module, data, |
371 | block->offset + block->size, | 370 | block->offset, data->size); |
372 | data->size - block->size); | ||
373 | if (err < 0) | 371 | if (err < 0) |
374 | return -ENOMEM; | 372 | return -ENOMEM; |
375 | 373 | ||