summaryrefslogtreecommitdiff
path: root/sound/soc/codecs/cs42l73.h
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.h
parent12a7a709a09aac117b630264cdd526e20d4d0ce2 (diff)
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.h')
-rw-r--r--sound/soc/codecs/cs42l73.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/sound/soc/codecs/cs42l73.h b/sound/soc/codecs/cs42l73.h
index 7c3bf7fd2f99..f30a4c4d62e6 100644
--- a/sound/soc/codecs/cs42l73.h
+++ b/sound/soc/codecs/cs42l73.h
@@ -162,16 +162,16 @@
/* CS42L73_ASPC, CS42L73_XSPC, CS42L73_VSPC */
#define SP_3ST (1 << 7)
-#define SPDIF_I2S 0
+#define SPDIF_I2S (0 << 6)
#define SPDIF_PCM (1 << 6)
-#define PCM_MODE0 0
-#define PCM_MODE1 1
-#define PCM_MODE2 2
-#define PCM_BO_MSBLSB 0
-#define PCM_BO_LSBMSB 1
-#define MCK_SCLK_64FS 0
-#define MCK_SCLK_MCLK 2
-#define MCK_SCLK_PREMCLK 3
+#define PCM_MODE0 (0 << 4)
+#define PCM_MODE1 (1 << 4)
+#define PCM_MODE2 (2 << 4)
+#define PCM_MODE_MASK (3 << 4)
+#define PCM_BIT_ORDER (1 << 3)
+#define MCK_SCLK_64FS (0 << 0)
+#define MCK_SCLK_MCLK (2 << 0)
+#define MCK_SCLK_PREMCLK (3 << 0)
/* CS42L73_xSPMMCC */
#define MS_MASTER (1 << 7)