Commit 1c12bf8d authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

[media] tda10071: fix a warning introduced by changeset 41f55d57

The two new tests don't set the returned value.

Cc: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 41f55d57
...@@ -1205,12 +1205,14 @@ struct dvb_frontend *tda10071_attach(const struct tda10071_config *config, ...@@ -1205,12 +1205,14 @@ struct dvb_frontend *tda10071_attach(const struct tda10071_config *config,
/* make sure demod i2c address is specified */ /* make sure demod i2c address is specified */
if (!config->demod_i2c_addr) { if (!config->demod_i2c_addr) {
dev_dbg(&i2c->dev, "%s: invalid demod i2c address!\n", __func__); dev_dbg(&i2c->dev, "%s: invalid demod i2c address!\n", __func__);
ret = -EINVAL;
goto error; goto error;
} }
/* make sure tuner i2c address is specified */ /* make sure tuner i2c address is specified */
if (!config->tuner_i2c_addr) { if (!config->tuner_i2c_addr) {
dev_dbg(&i2c->dev, "%s: invalid tuner i2c address!\n", __func__); dev_dbg(&i2c->dev, "%s: invalid tuner i2c address!\n", __func__);
ret = -EINVAL;
goto error; goto error;
} }
......
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