diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2012-12-21 20:43:19 +0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2012-12-21 20:43:41 +0400 |
commit | 1c12bf8de7e1557afeedd55d9bcec6b6a6d7b5d1 (patch) | |
tree | 9e1f6a83b25ebc524ed972afe5e093eb8257c168 /drivers/media/dvb-frontends/tda10071.c | |
parent | 41f55d57552b7d2236f94fccb5cdd07dbf2e8557 (diff) | |
download | linux-1c12bf8de7e1557afeedd55d9bcec6b6a6d7b5d1.tar.xz |
[media] tda10071: fix a warning introduced by changeset 41f55d5755
The two new tests don't set the returned value.
Cc: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb-frontends/tda10071.c')
-rw-r--r-- | drivers/media/dvb-frontends/tda10071.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/media/dvb-frontends/tda10071.c b/drivers/media/dvb-frontends/tda10071.c index 02f9234a5400..2521f7e23018 100644 --- a/drivers/media/dvb-frontends/tda10071.c +++ b/drivers/media/dvb-frontends/tda10071.c @@ -1205,12 +1205,14 @@ struct dvb_frontend *tda10071_attach(const struct tda10071_config *config, /* make sure demod i2c address is specified */ if (!config->demod_i2c_addr) { dev_dbg(&i2c->dev, "%s: invalid demod i2c address!\n", __func__); + ret = -EINVAL; goto error; } /* make sure tuner i2c address is specified */ if (!config->tuner_i2c_addr) { dev_dbg(&i2c->dev, "%s: invalid tuner i2c address!\n", __func__); + ret = -EINVAL; goto error; } |