diff options
author | Zidan Wang <b50113@freescale.com> | 2014-12-31 11:39:14 +0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-02-05 22:36:01 -0800 |
commit | aaadfdb3aa857602c74406b068fce5d484504191 (patch) | |
tree | 8f00e45b1ee1d66da35418feab3fad66522ccf8a | |
parent | 338dcaf53e1997a07139016eb62cd42a4dbc15e3 (diff) | |
download | linux-stable-aaadfdb3aa857602c74406b068fce5d484504191.tar.gz linux-stable-aaadfdb3aa857602c74406b068fce5d484504191.tar.bz2 linux-stable-aaadfdb3aa857602c74406b068fce5d484504191.zip |
ASoC: wm8960: Fix capture sample rate from 11250 to 11025
commit 22ee76daddb87f88d2336d1b4737ef27c4f307ac upstream.
wm8960 codec can't support sample rate 11250, it must be 11025.
Signed-off-by: Zidan Wang <b50113@freescale.com>
Acked-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | sound/soc/codecs/wm8960.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/wm8960.c b/sound/soc/codecs/wm8960.c index 4dc4e85116cd..641f940c138d 100644 --- a/sound/soc/codecs/wm8960.c +++ b/sound/soc/codecs/wm8960.c @@ -555,7 +555,7 @@ static struct { { 22050, 2 }, { 24000, 2 }, { 16000, 3 }, - { 11250, 4 }, + { 11025, 4 }, { 12000, 4 }, { 8000, 5 }, }; |