diff options
| author | Fabio Estevam <fabio.estevam@freescale.com> | 2013-07-04 20:01:02 -0300 | 
|---|---|---|
| committer | Mark Brown <broonie@linaro.org> | 2013-07-05 10:45:42 +0100 | 
| commit | 016fcab8ff46fca29375d484226ec91932aa4a07 (patch) | |
| tree | 16806eb3020594f115b56f8435897cab3db2806d | |
| parent | 84bbc4aa2de97143db0f6ef0c3fa0bd84f73b207 (diff) | |
ASoC: sglt5000: Fix the default value of CHIP_SSS_CTRL
According to the sgtl5000 reference manual, the default value of CHIP_SSS_CTRL
is 0x10.
Reported-by: Oskar Schirmer <oskar@scara.com>
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
Cc: stable@vger.kernel.org
| -rw-r--r-- | sound/soc/codecs/sgtl5000.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/sgtl5000.c b/sound/soc/codecs/sgtl5000.c index d441559dc92c..d659d3adcfb3 100644 --- a/sound/soc/codecs/sgtl5000.c +++ b/sound/soc/codecs/sgtl5000.c @@ -38,7 +38,7 @@  static const struct reg_default sgtl5000_reg_defaults[] = {  	{ SGTL5000_CHIP_CLK_CTRL,		0x0008 },  	{ SGTL5000_CHIP_I2S_CTRL,		0x0010 }, -	{ SGTL5000_CHIP_SSS_CTRL,		0x0008 }, +	{ SGTL5000_CHIP_SSS_CTRL,		0x0010 },  	{ SGTL5000_CHIP_DAC_VOL,		0x3c3c },  	{ SGTL5000_CHIP_PAD_STRENGTH,		0x015f },  	{ SGTL5000_CHIP_ANA_HP_CTRL,		0x1818 },  | 
