diff options
author | Bard Liao <bardliao@realtek.com> | 2017-03-16 06:58:40 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-03-16 15:07:50 +0100 |
commit | 763811987d5088d0461164f80e9d16869847a040 (patch) | |
tree | 844f658b6fdab5ac994bb4644f8cfe8df514aa87 /sound/soc | |
parent | ASoC: rt5665: CLKDET is also a power of ASRC (diff) | |
download | linux-763811987d5088d0461164f80e9d16869847a040.tar.xz linux-763811987d5088d0461164f80e9d16869847a040.zip |
ASoC: rt5665: fix define of RT5665_HP_DRIVER_5X
It is (0x3 << 2), not (0x2 << 2).
Signed-off-by: Bard Liao <bardliao@realtek.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc')
-rw-r--r-- | sound/soc/codecs/rt5665.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/rt5665.h b/sound/soc/codecs/rt5665.h index 12f7080a0d3c..a30f5e6d0628 100644 --- a/sound/soc/codecs/rt5665.h +++ b/sound/soc/codecs/rt5665.h @@ -1106,7 +1106,7 @@ #define RT5665_HP_DRIVER_MASK (0x3 << 2) #define RT5665_HP_DRIVER_1X (0x0 << 2) #define RT5665_HP_DRIVER_3X (0x1 << 2) -#define RT5665_HP_DRIVER_5X (0x2 << 2) +#define RT5665_HP_DRIVER_5X (0x3 << 2) #define RT5665_LDO1_DVO_MASK (0x3) #define RT5665_LDO1_DVO_09 (0x0) #define RT5665_LDO1_DVO_10 (0x1) |