diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2016-11-24 01:29:06 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2016-11-24 10:51:18 +0000 |
commit | 999982ef7c7f8aa131d32ef551897804443a40a1 (patch) | |
tree | 5fc16ee110dbc4147e1f843cb41c2e210786ca55 /sound | |
parent | ba2ff3027b5ab4a96b9d2832822311c3ccbf3011 (diff) | |
download | blackbird-op-linux-999982ef7c7f8aa131d32ef551897804443a40a1.tar.gz blackbird-op-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')
-rw-r--r-- | sound/soc/sunxi/sun8i-codec-analog.c | 2 |
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; } |