diff options
author | Zidan Wang <b50113@freescale.com> | 2014-12-31 11:39:14 +0800 |
---|---|---|
committer | Jiri Slaby <jslaby@suse.cz> | 2015-02-08 20:01:51 +0100 |
commit | bba2b7bbec42c63c86ab459c784319cce192860e (patch) | |
tree | 80e37a0d8c64098b702c391e73b9e260bfd7b801 /sound/soc | |
parent | dbaf59afa7fffbb523a32c7bf28d5a507a0896e6 (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: Jiri Slaby <jslaby@suse.cz>
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 f156010e52bc..942ef8427347 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 }, }; |