aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/codecs/pcm512x.c
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@ingics.com>2015-07-24 16:11:25 +0800
committerMark Brown <broonie@kernel.org>2015-07-24 18:31:31 +0100
commit0a3dcb509ae7701ba3eaf470cad91827821daf41 (patch)
tree60852f4b73792edc71e4015e97bcabf79dc25f67 /sound/soc/codecs/pcm512x.c
parentLinux 4.2-rc2 (diff)
downloadlinux-dev-0a3dcb509ae7701ba3eaf470cad91827821daf41.tar.xz
linux-dev-0a3dcb509ae7701ba3eaf470cad91827821daf41.zip
ASoC: Use params_width() at appropriate places
Signed-off-by: Axel Lin <axel.lin@ingics.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/pcm512x.c')
-rw-r--r--sound/soc/codecs/pcm512x.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/codecs/pcm512x.c b/sound/soc/codecs/pcm512x.c
index de16429f0a43..047c48953a20 100644
--- a/sound/soc/codecs/pcm512x.c
+++ b/sound/soc/codecs/pcm512x.c
@@ -1117,7 +1117,7 @@ static int pcm512x_hw_params(struct snd_pcm_substream *substream,
params_rate(params),
params_channels(params));
- switch (snd_pcm_format_width(params_format(params))) {
+ switch (params_width(params)) {
case 16:
alen = PCM512x_ALEN_16;
break;
@@ -1132,7 +1132,7 @@ static int pcm512x_hw_params(struct snd_pcm_substream *substream,
break;
default:
dev_err(codec->dev, "Bad frame size: %d\n",
- snd_pcm_format_width(params_format(params)));
+ params_width(params));
return -EINVAL;
}