From: Lars-Peter Clausen Date: Sun, 8 May 2011 16:24:41 +0000 (-0700) Subject: ASoC: SSM2602: Fix default register cache X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=7164bdb643cd9c919d69a5ea55b6f8477b90657c;p=linux-beck.git 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 Acked-by: Liam Girdwood Signed-off-by: Mark Brown --- 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 { * There is no point in caching the reset register */ static const u16 ssm2602_reg[SSM2602_CACHEREGNUM] = { - 0x0017, 0x0017, 0x0079, 0x0079, - 0x0000, 0x0000, 0x0000, 0x000a, + 0x0097, 0x0097, 0x0079, 0x0079, + 0x000a, 0x0008, 0x009f, 0x000a, 0x0000, 0x0000 };