Skip to content

Commit

Permalink
Merge remote-tracking branch 'asoc/topic/pcm1681' into asoc-next
Browse files Browse the repository at this point in the history
  • Loading branch information
broonie committed Aug 30, 2015
2 parents 4253f3a + 48f403b commit ca945cf
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions sound/soc/codecs/pcm1681.c
Original file line number Diff line number Diff line change
Expand Up @@ -95,17 +95,22 @@ static int pcm1681_set_deemph(struct snd_soc_codec *codec)
struct pcm1681_private *priv = snd_soc_codec_get_drvdata(codec);
int i = 0, val = -1, enable = 0;

if (priv->deemph)
for (i = 0; i < ARRAY_SIZE(pcm1681_deemph); i++)
if (pcm1681_deemph[i] == priv->rate)
if (priv->deemph) {
for (i = 0; i < ARRAY_SIZE(pcm1681_deemph); i++) {
if (pcm1681_deemph[i] == priv->rate) {
val = i;
break;
}
}
}

if (val != -1) {
regmap_update_bits(priv->regmap, PCM1681_DEEMPH_CONTROL,
PCM1681_DEEMPH_RATE_MASK, val << 3);
enable = 1;
} else
} else {
enable = 0;
}

/* enable/disable deemphasis functionality */
return regmap_update_bits(priv->regmap, PCM1681_DEEMPH_CONTROL,
Expand Down

0 comments on commit ca945cf

Please sign in to comment.