diff --git a/[refs] b/[refs] index 24dc48c64397..70b259cd738c 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 41f55d57552b7d2236f94fccb5cdd07dbf2e8557 +refs/heads/master: 1c12bf8de7e1557afeedd55d9bcec6b6a6d7b5d1 diff --git a/trunk/drivers/media/dvb-frontends/tda10071.c b/trunk/drivers/media/dvb-frontends/tda10071.c index 02f9234a5400..2521f7e23018 100644 --- a/trunk/drivers/media/dvb-frontends/tda10071.c +++ b/trunk/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; }