diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2014-02-21 03:52:40 -0500 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-02-25 18:45:39 -0500 |
commit | 951e9bb1fa589177183af1696ecfd4e4d8d37cbf (patch) | |
tree | efb40b85493d559a3acb0ba9d27d671e55a1d21b | |
parent | 5069e5c93ca73eab185d3bb338a1362275f9ea70 (diff) |
ASoC: Intel: sst-firmware: missing curly braces (harmless)
There were some curly braces intended here, but the code actually
works the same either way so it's not a bug.
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Acked-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 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/soc/intel/sst-firmware.c b/sound/soc/intel/sst-firmware.c index dee7eb5befb7..f7687107cf7f 100644 --- a/sound/soc/intel/sst-firmware.c +++ b/sound/soc/intel/sst-firmware.c | |||
@@ -293,7 +293,7 @@ static int block_module_prepare(struct sst_module *module) | |||
293 | /* enable each block so that's it'e ready for module P/S data */ | 293 | /* enable each block so that's it'e ready for module P/S data */ |
294 | list_for_each_entry(block, &module->block_list, module_list) { | 294 | list_for_each_entry(block, &module->block_list, module_list) { |
295 | 295 | ||
296 | if (block->ops && block->ops->enable) | 296 | if (block->ops && block->ops->enable) { |
297 | ret = block->ops->enable(block); | 297 | ret = block->ops->enable(block); |
298 | if (ret < 0) { | 298 | if (ret < 0) { |
299 | dev_err(module->dsp->dev, | 299 | dev_err(module->dsp->dev, |
@@ -301,6 +301,7 @@ static int block_module_prepare(struct sst_module *module) | |||
301 | block->type, block->index); | 301 | block->type, block->index); |
302 | goto err; | 302 | goto err; |
303 | } | 303 | } |
304 | } | ||
304 | } | 305 | } |
305 | return ret; | 306 | return ret; |
306 | 307 | ||