diff options
author | Zidan Wang <b50113@freescale.com> | 2014-12-31 11:39:14 +0800 |
---|---|---|
committer | Zefan Li <lizefan@huawei.com> | 2015-04-14 17:33:55 +0800 |
commit | 7845365e31c3ab56555f02a5b9a9850039b8d1d0 (patch) | |
tree | 8e26a8a4ae506be4864d8e23fe65cae0ffdfdff6 /sound/soc | |
parent | f137e937cb7a5495b658fb904a16fe2cecdf6376 (diff) |
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: Zefan Li <lizefan@huawei.com>
Diffstat (limited to 'sound/soc')
-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 ddb0d904a353..a09d7eb1f02f 100644 --- a/sound/soc/codecs/wm8960.c +++ b/sound/soc/codecs/wm8960.c @@ -496,7 +496,7 @@ static struct { { 22050, 2 }, { 24000, 2 }, { 16000, 3 }, - { 11250, 4 }, + { 11025, 4 }, { 12000, 4 }, { 8000, 5 }, }; |