mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 05:01:48 +00:00
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>
This commit is contained in:
parent
5069e5c93c
commit
951e9bb1fa
@ -293,7 +293,7 @@ static int block_module_prepare(struct sst_module *module)
|
||||
/* enable each block so that's it'e ready for module P/S data */
|
||||
list_for_each_entry(block, &module->block_list, module_list) {
|
||||
|
||||
if (block->ops && block->ops->enable)
|
||||
if (block->ops && block->ops->enable) {
|
||||
ret = block->ops->enable(block);
|
||||
if (ret < 0) {
|
||||
dev_err(module->dsp->dev,
|
||||
@ -301,6 +301,7 @@ static int block_module_prepare(struct sst_module *module)
|
||||
block->type, block->index);
|
||||
goto err;
|
||||
}
|
||||
}
|
||||
}
|
||||
return ret;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user