git.openpandora.org
/
pandora-kernel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7b9b5e1
)
ASoC: Refactor some conditions and loop in soc_bind_dai_link()
author
Stephen Warren
<swarren@nvidia.com>
Wed, 7 Dec 2011 20:58:27 +0000
(13:58 -0700)
committer
Mark Brown
<broonie@opensource.wolfsonmicro.com>
Fri, 9 Dec 2011 04:45:54 +0000
(12:45 +0800)
Transform some loops from:
for_each(x) {
if (f(x)) {
work_on(x);
}
}
to new structure:
for_each(x) {
if (!f(x))
continue;
work_on(x);
}
This will allow future modification of f(x) with less impact to the code.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Acked-by: Liam Girdwood <lrg@ti.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
No differences found