diff options
author | Alexander Sverdlin <subaparts@yandex.ru> | 2011-03-07 12:29:36 -0500 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-03-07 12:32:02 -0500 |
commit | 383f8465d1579635d7b7df5d7a1d1966b6ffb868 (patch) | |
tree | f3b682590061b75670a12ca72c37a779d6e735a4 /sound/soc | |
parent | 9b74c7d6ba8b95b4feb8c17b2b38d72eb4240ea4 (diff) |
ASoC: Extend range of supported sample rates for CS4271 CODEC.
Extend range of supported sample rates for CS4271 CODEC.
Signed-off-by: Alexander Sverdlin <subaparts@yandex.ru>
Acked-by: Liam Girdwood <lrg@ti.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc')
-rw-r--r-- | sound/soc/codecs/cs4271.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sound/soc/codecs/cs4271.c b/sound/soc/codecs/cs4271.c index 41a3ee6f6144..538e814136d3 100644 --- a/sound/soc/codecs/cs4271.c +++ b/sound/soc/codecs/cs4271.c | |||
@@ -33,6 +33,7 @@ | |||
33 | #define CS4271_PCM_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | \ | 33 | #define CS4271_PCM_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | \ |
34 | SNDRV_PCM_FMTBIT_S24_LE | \ | 34 | SNDRV_PCM_FMTBIT_S24_LE | \ |
35 | SNDRV_PCM_FMTBIT_S32_LE) | 35 | SNDRV_PCM_FMTBIT_S32_LE) |
36 | #define CS4271_PCM_RATES SNDRV_PCM_RATE_8000_192000 | ||
36 | 37 | ||
37 | /* | 38 | /* |
38 | * CS4271 registers | 39 | * CS4271 registers |
@@ -392,14 +393,14 @@ static struct snd_soc_dai_driver cs4271_dai = { | |||
392 | .stream_name = "Playback", | 393 | .stream_name = "Playback", |
393 | .channels_min = 2, | 394 | .channels_min = 2, |
394 | .channels_max = 2, | 395 | .channels_max = 2, |
395 | .rates = SNDRV_PCM_RATE_8000_96000, | 396 | .rates = CS4271_PCM_RATES, |
396 | .formats = CS4271_PCM_FORMATS, | 397 | .formats = CS4271_PCM_FORMATS, |
397 | }, | 398 | }, |
398 | .capture = { | 399 | .capture = { |
399 | .stream_name = "Capture", | 400 | .stream_name = "Capture", |
400 | .channels_min = 2, | 401 | .channels_min = 2, |
401 | .channels_max = 2, | 402 | .channels_max = 2, |
402 | .rates = SNDRV_PCM_RATE_8000_96000, | 403 | .rates = CS4271_PCM_RATES, |
403 | .formats = CS4271_PCM_FORMATS, | 404 | .formats = CS4271_PCM_FORMATS, |
404 | }, | 405 | }, |
405 | .ops = &cs4271_dai_ops, | 406 | .ops = &cs4271_dai_ops, |