aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/sound/soc/sunxi
diff options
context:
space:
mode:
authorDan Carpenter <dan.carpenter@oracle.com>2016-11-24 01:29:06 +0300
committerMark Brown <broonie@kernel.org>2016-11-24 10:51:18 +0000
commit999982ef7c7f8aa131d32ef551897804443a40a1 (patch)
tree5fc16ee110dbc4147e1f843cb41c2e210786ca55 /sound/soc/sunxi
parentASoC: sunxi: Add support for A23/A33/H3 codec's analog path controls (diff)
downloadwireguard-linux-999982ef7c7f8aa131d32ef551897804443a40a1.tar.xz
wireguard-linux-999982ef7c7f8aa131d32ef551897804443a40a1.zip
ASoC: sunxi: Uninitialized variable in probe()
Oddly enough, my version of GCC misses this uninitialized variable. Fixes: ba2ff3027b5a ("ASoC: sunxi: Add support for A23/A33/H3 codec's analog path controls") Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Acked-by: Chen-Yu Tsai <wens@csie.org> Acked-by: Maxime Ripard <maxime.ripard@free-electrons.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/sunxi')
-rw-r--r--sound/soc/sunxi/sun8i-codec-analog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/sunxi/sun8i-codec-analog.c b/sound/soc/sunxi/sun8i-codec-analog.c
index 222bbd440b1e..af02290ebe49 100644
--- a/sound/soc/sunxi/sun8i-codec-analog.c
+++ b/sound/soc/sunxi/sun8i-codec-analog.c
@@ -589,7 +589,7 @@ static int sun8i_codec_analog_cmpnt_probe(struct snd_soc_component *cmpnt)
}
if (quirks->has_hmic) {
- sun8i_codec_add_hmic(cmpnt);
+ ret = sun8i_codec_add_hmic(cmpnt);
if (ret)
return ret;
}