diff options
author | Takashi Iwai <tiwai@suse.de> | 2011-09-27 18:21:41 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2011-09-27 18:21:41 +0200 |
commit | 0fac25908f8e26a27d869f0aa4fad04c3db60dc7 (patch) | |
tree | 226be2faebf7fad80ef2eb44edca9b0c18eed511 /sound | |
parent | 61a6a108d15213f5ee06332e1e7766d3860e4453 (diff) | |
parent | 9058020cd9ae3423d6fe7de591698dc96b6701aa (diff) | |
download | linux-3.10-0fac25908f8e26a27d869f0aa4fad04c3db60dc7.tar.gz linux-3.10-0fac25908f8e26a27d869f0aa4fad04c3db60dc7.tar.bz2 linux-3.10-0fac25908f8e26a27d869f0aa4fad04c3db60dc7.zip |
Merge branch 'fix/asoc' into for-linus
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/codecs/ssm2602.c | 3 | ||||
-rw-r--r-- | sound/soc/omap/omap-mcbsp.c | 6 |
2 files changed, 8 insertions, 1 deletions
diff --git a/sound/soc/codecs/ssm2602.c b/sound/soc/codecs/ssm2602.c index 84f4ad56855..9801cd7cfcb 100644 --- a/sound/soc/codecs/ssm2602.c +++ b/sound/soc/codecs/ssm2602.c @@ -431,7 +431,8 @@ static int ssm2602_set_dai_fmt(struct snd_soc_dai *codec_dai, static int ssm2602_set_bias_level(struct snd_soc_codec *codec, enum snd_soc_bias_level level) { - u16 reg = snd_soc_read(codec, SSM2602_PWR) & 0xff7f; + u16 reg = snd_soc_read(codec, SSM2602_PWR); + reg &= ~(PWR_POWER_OFF | PWR_OSC_PDN); switch (level) { case SND_SOC_BIAS_ON: diff --git a/sound/soc/omap/omap-mcbsp.c b/sound/soc/omap/omap-mcbsp.c index ebcc2d4d2b1..478d6077845 100644 --- a/sound/soc/omap/omap-mcbsp.c +++ b/sound/soc/omap/omap-mcbsp.c @@ -516,6 +516,12 @@ static int omap_mcbsp_dai_set_dai_sysclk(struct snd_soc_dai *cpu_dai, struct omap_mcbsp_reg_cfg *regs = &mcbsp_data->regs; int err = 0; + if (mcbsp_data->active) + if (freq == mcbsp_data->in_freq) + return 0; + else + return -EBUSY; + /* The McBSP signal muxing functions are only available on McBSP1 */ if (clk_id == OMAP_MCBSP_CLKR_SRC_CLKR || clk_id == OMAP_MCBSP_CLKR_SRC_CLKX || |