diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-06-06 11:16:34 -0400 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-06-06 16:45:44 -0400 |
commit | 88d960864e371d0caf1db69e6d1d740ad7a247ba (patch) | |
tree | cb1669d1169c0401db8c27368dfa3c2841878cea | |
parent | dfcc9047c97ca99b151e30133c9bccf5ab258ca6 (diff) |
ASoC: Indentation fix for null loop operation
More with the legibility.
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Acked-by: Liam Girdwood <lrg@ti.com>
-rw-r--r-- | sound/soc/soc-dapm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/soc-dapm.c b/sound/soc/soc-dapm.c index 6be6546648c8..988cdffa8c4c 100644 --- a/sound/soc/soc-dapm.c +++ b/sound/soc/soc-dapm.c | |||
@@ -209,7 +209,7 @@ static void dapm_set_path_status(struct snd_soc_dapm_widget *w, | |||
209 | int val, item, bitmask; | 209 | int val, item, bitmask; |
210 | 210 | ||
211 | for (bitmask = 1; bitmask < e->max; bitmask <<= 1) | 211 | for (bitmask = 1; bitmask < e->max; bitmask <<= 1) |
212 | ; | 212 | ; |
213 | val = snd_soc_read(w->codec, e->reg); | 213 | val = snd_soc_read(w->codec, e->reg); |
214 | item = (val >> e->shift_l) & (bitmask - 1); | 214 | item = (val >> e->shift_l) & (bitmask - 1); |
215 | 215 | ||