diff options
author | Takashi Iwai <tiwai@suse.de> | 2012-02-07 11:04:48 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2012-02-07 11:04:48 +0100 |
commit | cfd0d11ef565fef718118a3bd28afd52f8381bc9 (patch) | |
tree | 6ce0b913b90757a12f9c635b5be4dcbfbfdfc663 /sound/soc/codecs/cs42l73.c | |
parent | ALSA: hda/realtek - Fix a wrong condition (diff) | |
parent | ASoC: wm_hubs: Correct line input to line output 2 paths (diff) | |
download | linux-cfd0d11ef565fef718118a3bd28afd52f8381bc9.tar.xz linux-cfd0d11ef565fef718118a3bd28afd52f8381bc9.zip |
Merge tag 'asoc-3.3' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus
The only particularly remarkable change here is the one for handling of
the Android suspend ignore code for idle_bias_off CODECs. That one is
actually a regression fix as some of the new power savings that have
been introduced confused the suspend ignore code, making devices that
are active for non-audio reasons look like they are idle causing them to
be suspended instead of being kept active.
Diffstat (limited to 'sound/soc/codecs/cs42l73.c')
-rw-r--r-- | sound/soc/codecs/cs42l73.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/cs42l73.c b/sound/soc/codecs/cs42l73.c index 9d38db8f1919..78979b3e0e95 100644 --- a/sound/soc/codecs/cs42l73.c +++ b/sound/soc/codecs/cs42l73.c @@ -1113,7 +1113,7 @@ static int cs42l73_pcm_hw_params(struct snd_pcm_substream *substream, priv->config[id].mmcc &= 0xC0; priv->config[id].mmcc |= cs42l73_mclk_coeffs[mclk_coeff].mmcc; priv->config[id].spc &= 0xFC; - priv->config[id].spc &= MCK_SCLK_64FS; + priv->config[id].spc |= MCK_SCLK_MCLK; } else { /* CS42L73 Slave */ priv->config[id].spc &= 0xFC; |