summaryrefslogtreecommitdiffstats
path: root/sound/soc/codecs/cs42l73.c
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@gmail.com>2011-11-18 16:05:13 +0800
committerMark Brown <broonie@opensource.wolfsonmicro.com>2011-11-22 13:02:09 +0000
commit717b8fae3873b4c83dda2274e8190f538c442000 (patch)
tree78bac9f84685f2a6374ea260f9b29ee66795e43d /sound/soc/codecs/cs42l73.c
parent12a7a709a09aac117b630264cdd526e20d4d0ce2 (diff)
downloadlinux-stable-717b8fae3873b4c83dda2274e8190f538c442000.tar.gz
linux-stable-717b8fae3873b4c83dda2274e8190f538c442000.tar.bz2
linux-stable-717b8fae3873b4c83dda2274e8190f538c442000.zip
ASoC: cs42l73: Unify the way to define bits of register
Current code defines some bits with left shift to the proper bit defined in datasheet, but some don't. Unify the definition with proper left shift and adjust the code accordingly. Signed-off-by: Axel Lin <axel.lin@gmail.com> Acked-by: Brian Austin <brian.austin@cirrus.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/codecs/cs42l73.c')
-rw-r--r--sound/soc/codecs/cs42l73.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/soc/codecs/cs42l73.c b/sound/soc/codecs/cs42l73.c
index 5544f1417a25..672da66dc662 100644
--- a/sound/soc/codecs/cs42l73.c
+++ b/sound/soc/codecs/cs42l73.c
@@ -1028,13 +1028,13 @@ static int cs42l73_set_dai_fmt(struct snd_soc_dai *codec_dai, unsigned int fmt)
switch (format) {
case SND_SOC_DAIFMT_DSP_B:
if (inv == SND_SOC_DAIFMT_IB_IF)
- spc |= (PCM_MODE0 << 4);
+ spc |= PCM_MODE0;
if (inv == SND_SOC_DAIFMT_IB_NF)
- spc |= (PCM_MODE1 << 4);
+ spc |= PCM_MODE1;
break;
case SND_SOC_DAIFMT_DSP_A:
if (inv == SND_SOC_DAIFMT_IB_IF)
- spc |= (PCM_MODE1 << 4);
+ spc |= PCM_MODE1;
break;
default:
return -EINVAL;