aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/codecs
diff options
context:
space:
mode:
authorPeter Ujfalusi <peter.ujfalusi@nokia.com>2009-10-21 02:58:35 -0400
committerMark Brown <broonie@opensource.wolfsonmicro.com>2009-10-21 14:08:21 -0400
commit017deee63934349a70292666acfedea8e6eb6eb8 (patch)
treef69c4e66c7a862963240e29ad54dbb793be35a97 /sound/soc/codecs
parent02624621a58d7030e0e56f1e3df490202e59056c (diff)
ASoC: tlv320dac33: typo fix in the header
Fix the definition of DAC33_LTM field, the LTM bits in FIFO_IRQ_MODE_B register are starting at bit 6. Signed-off-by: Peter Ujfalusi <peter.ujfalusi@nokia.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/codecs')
-rw-r--r--sound/soc/codecs/tlv320dac33.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/tlv320dac33.h b/sound/soc/codecs/tlv320dac33.h
index 0fedd709028e..eb8ae07f0bd2 100644
--- a/sound/soc/codecs/tlv320dac33.h
+++ b/sound/soc/codecs/tlv320dac33.h
@@ -186,7 +186,7 @@
186#define DAC33_NSM(x) (x << 0) 186#define DAC33_NSM(x) (x << 0)
187#define DAC33_PSM(x) (x << 2) 187#define DAC33_PSM(x) (x << 2)
188#define DAC33_ATM(x) (x << 4) 188#define DAC33_ATM(x) (x << 4)
189#define DAC33_LTM(x) (x << 4) 189#define DAC33_LTM(x) (x << 6)
190 190
191/* DAC33_DAC_CTRL_A (0x2C) */ 191/* DAC33_DAC_CTRL_A (0x2C) */
192#define DAC33_DACRATE(x) (x << 0) 192#define DAC33_DACRATE(x) (x << 0)