Commit c38071c0 authored by Mark Brown's avatar Mark Brown

ASoC: Fix warning in WM1250-EV1 driver

Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
Acked-by: default avatarLiam Girdwood <lrg@ti.com>
parent 39e9b8d2
...@@ -58,12 +58,12 @@ static struct snd_soc_codec_driver soc_codec_dev_wm1250_ev1 = { ...@@ -58,12 +58,12 @@ static struct snd_soc_codec_driver soc_codec_dev_wm1250_ev1 = {
static int __devinit wm1250_ev1_probe(struct i2c_client *i2c, static int __devinit wm1250_ev1_probe(struct i2c_client *i2c,
const struct i2c_device_id *i2c_id) const struct i2c_device_id *i2c_id)
{ {
int ret, id, board, rev; int id, board, rev;
board = i2c_smbus_read_byte_data(i2c, 0); board = i2c_smbus_read_byte_data(i2c, 0);
if (board < 0) { if (board < 0) {
dev_err(&i2c->dev, "Failed to read ID: %d\n", ret); dev_err(&i2c->dev, "Failed to read ID: %d\n", board);
return ret; return board;
} }
id = (board & 0xfe) >> 2; id = (board & 0xfe) >> 2;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment