Commit 519cf2df authored by Mark Brown's avatar Mark Brown

ASoC: Check for errors when writing WM8731 reset register

Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent 6bab83fd
......@@ -574,9 +574,14 @@ static int wm8731_register(struct wm8731_priv *wm8731)
memcpy(codec->reg_cache, wm8731_reg, sizeof(wm8731_reg));
ret = wm8731_reset(codec);
if (ret < 0) {
dev_err(codec->dev, "Failed to issue reset\n");
return ret;
}
wm8731_dai.dev = codec->dev;
wm8731_reset(codec);
wm8731_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
/* Latch the update bits */
......
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