Skip to content

Commit

Permalink
ASoC: tlv320dac33: typo fix in the header
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Peter Ujfalusi authored and Mark Brown committed Oct 21, 2009
1 parent 0262462 commit 017deee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sound/soc/codecs/tlv320dac33.h
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
#define DAC33_NSM(x) (x << 0)
#define DAC33_PSM(x) (x << 2)
#define DAC33_ATM(x) (x << 4)
#define DAC33_LTM(x) (x << 4)
#define DAC33_LTM(x) (x << 6)

/* DAC33_DAC_CTRL_A (0x2C) */
#define DAC33_DACRATE(x) (x << 0)
Expand Down

0 comments on commit 017deee

Please sign in to comment.