diff options
author | Sachin Pandhare <sachinpandhare@gmail.com> | 2015-11-10 23:38:02 +0530 |
---|---|---|
committer | Jiri Slaby <jslaby@suse.cz> | 2016-01-27 09:56:30 +0100 |
commit | 3a793e4f287c91f95b5510994b6666a42b128e9d (patch) | |
tree | 6a0331e4e8530591abe13105d4f15b4c2b7db179 /sound | |
parent | 5254c684be63fb23d8eb25b05f05ddefcd73b43c (diff) | |
download | lwn-3a793e4f287c91f95b5510994b6666a42b128e9d.tar.gz lwn-3a793e4f287c91f95b5510994b6666a42b128e9d.zip |
ASoC: wm8962: correct addresses for HPF_C_0/1
commit e9f96bc53c1b959859599cb30ce6fd4fbb4448c2 upstream.
From datasheet:
R17408 (4400h) HPF_C_1
R17409 (4401h) HPF_C_0
17048 -> 17408 (0x4400)
17049 -> 17409 (0x4401)
Signed-off-by: Sachin Pandhare <sachinpandhare@gmail.com>
Acked-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/codecs/wm8962.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/codecs/wm8962.c b/sound/soc/codecs/wm8962.c index ea16dc456352..c2cd83d8ed97 100644 --- a/sound/soc/codecs/wm8962.c +++ b/sound/soc/codecs/wm8962.c @@ -364,8 +364,8 @@ static struct reg_default wm8962_reg[] = { { 16924, 0x0059 }, /* R16924 - HDBASS_PG_1 */ { 16925, 0x999A }, /* R16925 - HDBASS_PG_0 */ - { 17048, 0x0083 }, /* R17408 - HPF_C_1 */ - { 17049, 0x98AD }, /* R17409 - HPF_C_0 */ + { 17408, 0x0083 }, /* R17408 - HPF_C_1 */ + { 17409, 0x98AD }, /* R17409 - HPF_C_0 */ { 17920, 0x007F }, /* R17920 - ADCL_RETUNE_C1_1 */ { 17921, 0xFFFF }, /* R17921 - ADCL_RETUNE_C1_0 */ |