提交 f96985e3 编写于 作者: D Dan Carpenter 提交者: Mark Brown

ASoC: STA529: fix an error message

GCC complains that "ret" is uninitialized here.
Signed-off-by: NDan Carpenter <dan.carpenter@oracle.com>
Acked-By: NRajeev Kumar <rajeev-dlh.kumar@st.com>
Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
上级 2b4d39fc
......@@ -397,8 +397,9 @@ static __devinit int sta529_i2c_probe(struct i2c_client *i2c,
sta529->regmap = devm_regmap_init_i2c(i2c, &sta529_regmap);
if (IS_ERR(sta529->regmap)) {
ret = PTR_ERR(sta529->regmap);
dev_err(&i2c->dev, "Failed to allocate regmap: %d\n", ret);
return PTR_ERR(sta529->regmap);
return ret;
}
i2c_set_clientdata(i2c, sta529);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册