diff options
author | Lars-Peter Clausen <lars@metafoo.de> | 2011-05-08 12:24:41 -0400 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-05-08 19:44:45 -0400 |
commit | 7164bdb643cd9c919d69a5ea55b6f8477b90657c (patch) | |
tree | 959a8d5d4d622382eb4af90f3d1f4494f999fd4f | |
parent | afd8f37c8054318655e4f9752d45c817a9d7cb07 (diff) |
ASoC: SSM2602: Fix default register cache
Some of the values in the default register cache did not represent the codecs
state after reset. This patch fixes it.
Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Acked-by: Liam Girdwood <lrg@ti.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
-rw-r--r-- | sound/soc/codecs/ssm2602.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/codecs/ssm2602.c b/sound/soc/codecs/ssm2602.c index 30229cf1bb54..a09d66c0e70e 100644 --- a/sound/soc/codecs/ssm2602.c +++ b/sound/soc/codecs/ssm2602.c | |||
@@ -60,8 +60,8 @@ struct ssm2602_priv { | |||
60 | * There is no point in caching the reset register | 60 | * There is no point in caching the reset register |
61 | */ | 61 | */ |
62 | static const u16 ssm2602_reg[SSM2602_CACHEREGNUM] = { | 62 | static const u16 ssm2602_reg[SSM2602_CACHEREGNUM] = { |
63 | 0x0017, 0x0017, 0x0079, 0x0079, | 63 | 0x0097, 0x0097, 0x0079, 0x0079, |
64 | 0x0000, 0x0000, 0x0000, 0x000a, | 64 | 0x000a, 0x0008, 0x009f, 0x000a, |
65 | 0x0000, 0x0000 | 65 | 0x0000, 0x0000 |
66 | }; | 66 | }; |
67 | 67 | ||