diff options
Diffstat (limited to 'sound/soc/codecs/wm8961.c')
-rw-r--r-- | sound/soc/codecs/wm8961.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/codecs/wm8961.c b/sound/soc/codecs/wm8961.c index a0bb972420b3..6b22ef200e20 100644 --- a/sound/soc/codecs/wm8961.c +++ b/sound/soc/codecs/wm8961.c | |||
@@ -710,7 +710,7 @@ static int wm8961_hw_params(struct snd_pcm_substream *substream, | |||
710 | if (fs <= 24000) | 710 | if (fs <= 24000) |
711 | reg |= WM8961_DACSLOPE; | 711 | reg |= WM8961_DACSLOPE; |
712 | else | 712 | else |
713 | reg &= WM8961_DACSLOPE; | 713 | reg &= ~WM8961_DACSLOPE; |
714 | snd_soc_write(codec, WM8961_ADC_DAC_CONTROL_2, reg); | 714 | snd_soc_write(codec, WM8961_ADC_DAC_CONTROL_2, reg); |
715 | 715 | ||
716 | return 0; | 716 | return 0; |
@@ -735,7 +735,7 @@ static int wm8961_set_sysclk(struct snd_soc_dai *dai, int clk_id, | |||
735 | freq /= 2; | 735 | freq /= 2; |
736 | } else { | 736 | } else { |
737 | dev_dbg(codec->dev, "Using MCLK/1 for %dHz MCLK\n", freq); | 737 | dev_dbg(codec->dev, "Using MCLK/1 for %dHz MCLK\n", freq); |
738 | reg &= WM8961_MCLKDIV; | 738 | reg &= ~WM8961_MCLKDIV; |
739 | } | 739 | } |
740 | 740 | ||
741 | snd_soc_write(codec, WM8961_CLOCKING1, reg); | 741 | snd_soc_write(codec, WM8961_CLOCKING1, reg); |