Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 137860
b: refs/heads/master
c: 3106381
h: refs/heads/master
v: v3
  • Loading branch information
Mauro Carvalho Chehab committed Mar 30, 2009
1 parent 00748ec commit cac8ec1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 68d5ce70217ddd20baf3583ce25f08e869eb148f
refs/heads/master: 31063814400cd37d47f5f58a96e58596196f04b0
6 changes: 5 additions & 1 deletion trunk/drivers/media/common/tuners/tda8290.c
Original file line number Diff line number Diff line change
Expand Up @@ -566,8 +566,11 @@ static int tda829x_find_tuner(struct dvb_frontend *fe)
u8 data;
struct i2c_msg msg = { .flags = I2C_M_RD, .buf = &data, .len = 1 };

if (NULL == analog_ops->i2c_gate_ctrl)
if (!analog_ops->i2c_gate_ctrl) {
printk(KERN_ERR "tda8290: no gate control were provided!\n");

return -EINVAL;
}

analog_ops->i2c_gate_ctrl(fe, 1);

Expand Down Expand Up @@ -615,6 +618,7 @@ static int tda829x_find_tuner(struct dvb_frontend *fe)

if (ret != 1) {
tuner_warn("tuner access failed!\n");
analog_ops->i2c_gate_ctrl(fe, 0);
return -EREMOTEIO;
}

Expand Down

0 comments on commit cac8ec1

Please sign in to comment.