diff options
author | Dan Carpenter <[email protected]> | 2016-11-24 01:29:06 +0300 |
---|---|---|
committer | Mark Brown <[email protected]> | 2016-11-24 10:51:18 +0000 |
commit | 999982ef7c7f8aa131d32ef551897804443a40a1 (patch) | |
tree | 5fc16ee110dbc4147e1f843cb41c2e210786ca55 | |
parent | ba2ff3027b5ab4a96b9d2832822311c3ccbf3011 (diff) |
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 <[email protected]>
Acked-by: Chen-Yu Tsai <[email protected]>
Acked-by: Maxime Ripard <[email protected]>
Signed-off-by: Mark Brown <[email protected]>
-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; } |