Commit 90ec0822 authored by Mark Brown's avatar Mark Brown Committed by Greg Kroah-Hartman

ASoC: Ensure WM8962 PLL registers are reset

commit 4f4488ab upstream.

The WM8962 has a separate software reset for the PLL registers. Ensure that
these are reset also on startup.
Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent df4c76cf
......@@ -1959,7 +1959,13 @@ static int wm8962_readable_register(struct snd_soc_codec *codec, unsigned int re
static int wm8962_reset(struct snd_soc_codec *codec)
{
return snd_soc_write(codec, WM8962_SOFTWARE_RESET, 0x6243);
int ret;
ret = snd_soc_write(codec, WM8962_SOFTWARE_RESET, 0x6243);
if (ret != 0)
return ret;
return snd_soc_write(codec, WM8962_PLL_SOFTWARE_RESET, 0);
}
static const DECLARE_TLV_DB_SCALE(inpga_tlv, -2325, 75, 0);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment