aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShahina Shaik <sharab.shaik@gmail.com>2014-06-13 02:26:54 -0400
committerMark Brown <broonie@linaro.org>2014-06-22 07:03:26 -0400
commit423ca88eb5288d3bf381bd5b4601a496ab1ae463 (patch)
treec95a8249a600df536f51a24b03743d0808a08462
parent43bf38ba566831867836569b3958064cd5c37eac (diff)
ASoC: tlv320aic31xx: Fixed Coding Style Issues
Fixed coding style issues of "Missing Blank line after declaration" Signed-off-by: Shahina Shaik <sharab.shaik@gmail.com> Signed-off-by: Mark Brown <broonie@linaro.org>
-rw-r--r--sound/soc/codecs/tlv320aic31xx.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/soc/codecs/tlv320aic31xx.c b/sound/soc/codecs/tlv320aic31xx.c
index 23419109ecac..a9c4a8baba88 100644
--- a/sound/soc/codecs/tlv320aic31xx.c
+++ b/sound/soc/codecs/tlv320aic31xx.c
@@ -329,6 +329,7 @@ static int aic31xx_wait_bits(struct aic31xx_priv *aic31xx, unsigned int reg,
329 unsigned int bits; 329 unsigned int bits;
330 int counter = count; 330 int counter = count;
331 int ret = regmap_read(aic31xx->regmap, reg, &bits); 331 int ret = regmap_read(aic31xx->regmap, reg, &bits);
332
332 while ((bits & mask) != wbits && counter && !ret) { 333 while ((bits & mask) != wbits && counter && !ret) {
333 usleep_range(sleep, sleep * 2); 334 usleep_range(sleep, sleep * 2);
334 ret = regmap_read(aic31xx->regmap, reg, &bits); 335 ret = regmap_read(aic31xx->regmap, reg, &bits);
@@ -435,6 +436,7 @@ static int mic_bias_event(struct snd_soc_dapm_widget *w,
435{ 436{
436 struct snd_soc_codec *codec = w->codec; 437 struct snd_soc_codec *codec = w->codec;
437 struct aic31xx_priv *aic31xx = snd_soc_codec_get_drvdata(codec); 438 struct aic31xx_priv *aic31xx = snd_soc_codec_get_drvdata(codec);
439
438 switch (event) { 440 switch (event) {
439 case SND_SOC_DAPM_POST_PMU: 441 case SND_SOC_DAPM_POST_PMU:
440 /* change mic bias voltage to user defined */ 442 /* change mic bias voltage to user defined */