mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
V4L/DVB (3090): Cleanup check for dvb.
- Cleanup check for dvb. Signed-off-by: Michael Krufky <mkrufky@m1k.net> Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br>
This commit is contained in:
parent
611900c185
commit
bcb17c421e
1 changed files with 3 additions and 6 deletions
|
@ -136,10 +136,7 @@ void cx88_call_i2c_clients(struct cx88_core *core, unsigned int cmd, void *arg)
|
|||
if (0 != core->i2c_rc)
|
||||
return;
|
||||
|
||||
if (core->dvbdev == NULL) {
|
||||
i2c_clients_command(&core->i2c_adap, cmd, arg);
|
||||
} else {
|
||||
|
||||
if (core->dvbdev) {
|
||||
if (core->dvbdev->dvb.frontend->ops->i2c_gate_ctrl)
|
||||
core->dvbdev->dvb.frontend->ops->i2c_gate_ctrl(core->dvbdev->dvb.frontend, 1);
|
||||
|
||||
|
@ -147,8 +144,8 @@ void cx88_call_i2c_clients(struct cx88_core *core, unsigned int cmd, void *arg)
|
|||
|
||||
if (core->dvbdev->dvb.frontend->ops->i2c_gate_ctrl)
|
||||
core->dvbdev->dvb.frontend->ops->i2c_gate_ctrl(core->dvbdev->dvb.frontend, 0);
|
||||
}
|
||||
|
||||
} else
|
||||
i2c_clients_command(&core->i2c_adap, cmd, arg);
|
||||
}
|
||||
|
||||
static struct i2c_algo_bit_data cx8800_i2c_algo_template = {
|
||||
|
|
Loading…
Reference in a new issue