diff options
author | Mark Brown <broonie@linaro.org> | 2014-07-31 12:47:32 +0100 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-07-31 13:30:11 +0100 |
commit | 1f9ffcb0be08f83006f2d3c7e841d8ba7cdd1a9b (patch) | |
tree | 8c80b10c906d926b21b809f17213c50a57fef039 /sound | |
parent | 737e0f89ed830cc48115140f8e494f5fe9dd7abe (diff) | |
download | op-kernel-dev-1f9ffcb0be08f83006f2d3c7e841d8ba7cdd1a9b.zip op-kernel-dev-1f9ffcb0be08f83006f2d3c7e841d8ba7cdd1a9b.tar.gz |
ASoC: sta529: Convert to params_width()
The CODEC doesn't care how data is laid out in memory.
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/codecs/sta529.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sound/soc/codecs/sta529.c b/sound/soc/codecs/sta529.c index a40c4b0..7ece89b 100644 --- a/sound/soc/codecs/sta529.c +++ b/sound/soc/codecs/sta529.c @@ -197,16 +197,16 @@ static int sta529_hw_params(struct snd_pcm_substream *substream, int pdata, play_freq_val, record_freq_val; int bclk_to_fs_ratio; - switch (params_format(params)) { - case SNDRV_PCM_FORMAT_S16_LE: + switch (params_width(params)) { + case 16: pdata = 1; bclk_to_fs_ratio = 0; break; - case SNDRV_PCM_FORMAT_S24_LE: + case 24: pdata = 2; bclk_to_fs_ratio = 1; break; - case SNDRV_PCM_FORMAT_S32_LE: + case 32: pdata = 3; bclk_to_fs_ratio = 2; break; |