[alsa-devel] [PATCH] ASoC: cs35l32: fix compile warning for i2c_probe
Brian Austin
brian.austin at cirrus.com
Thu Aug 7 16:34:38 CEST 2014
Forgot to add a return for err_disable goto statement.
Causes compile warning of control reaching end of non-void
Signed-off-by: Brian Austin <briann.austin at cirrus.com>
---
sound/soc/codecs/cs35l32.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/sound/soc/codecs/cs35l32.c b/sound/soc/codecs/cs35l32.c
index 90565d5..9c6b272 100644
--- a/sound/soc/codecs/cs35l32.c
+++ b/sound/soc/codecs/cs35l32.c
@@ -549,6 +549,7 @@ static int cs35l32_i2c_probe(struct i2c_client *i2c_client,
err_disable:
regulator_bulk_disable(ARRAY_SIZE(cs35l32->supplies),
cs35l32->supplies);
+ return ret;
}
static int cs35l32_i2c_remove(struct i2c_client *i2c_client)
--
1.7.9.5
More information about the Alsa-devel
mailing list