diff options
author | Andreas Irestål <andreas.irestal@axis.com> | 2016-02-16 07:56:41 -0500 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2016-02-23 23:12:10 -0500 |
commit | 7c139db2e579669c3313f92d2dd2256b255fcc07 (patch) | |
tree | 24b91f61b8156107409adc5ac78db9f8f373edff | |
parent | 92e963f50fc74041b5e9e744c330dca48e04f08d (diff) |
ASoC: adau17x1: Fix incorrect BCLK ratio definitions
Signed-off-by: Andreas Irestål <andire@axis.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | sound/soc/codecs/adau17x1.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/soc/codecs/adau17x1.h b/sound/soc/codecs/adau17x1.h index e13583e6ff56..5ae87a084d97 100644 --- a/sound/soc/codecs/adau17x1.h +++ b/sound/soc/codecs/adau17x1.h | |||
@@ -103,9 +103,9 @@ bool adau17x1_has_dsp(struct adau *adau); | |||
103 | #define ADAU17X1_CLOCK_CONTROL_CORECLK_SRC_PLL BIT(3) | 103 | #define ADAU17X1_CLOCK_CONTROL_CORECLK_SRC_PLL BIT(3) |
104 | #define ADAU17X1_CLOCK_CONTROL_SYSCLK_EN BIT(0) | 104 | #define ADAU17X1_CLOCK_CONTROL_SYSCLK_EN BIT(0) |
105 | 105 | ||
106 | #define ADAU17X1_SERIAL_PORT1_BCLK32 (0x0 << 5) | 106 | #define ADAU17X1_SERIAL_PORT1_BCLK64 (0x0 << 5) |
107 | #define ADAU17X1_SERIAL_PORT1_BCLK48 (0x1 << 5) | 107 | #define ADAU17X1_SERIAL_PORT1_BCLK32 (0x1 << 5) |
108 | #define ADAU17X1_SERIAL_PORT1_BCLK64 (0x2 << 5) | 108 | #define ADAU17X1_SERIAL_PORT1_BCLK48 (0x2 << 5) |
109 | #define ADAU17X1_SERIAL_PORT1_BCLK128 (0x3 << 5) | 109 | #define ADAU17X1_SERIAL_PORT1_BCLK128 (0x3 << 5) |
110 | #define ADAU17X1_SERIAL_PORT1_BCLK256 (0x4 << 5) | 110 | #define ADAU17X1_SERIAL_PORT1_BCLK256 (0x4 << 5) |
111 | #define ADAU17X1_SERIAL_PORT1_BCLK_MASK (0x7 << 5) | 111 | #define ADAU17X1_SERIAL_PORT1_BCLK_MASK (0x7 << 5) |