mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-22 17:33:01 +00:00
V4L/DVB (9535): cx88-dvb: Remove usage core->prev_set_voltage from cx24116 based cards.
Remove usage core->prev_set_voltage from cx24116 based cards, as it does not make sense for the demod. Signed-off-by: Igor M. Liplianin <liplianin@me.by> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
cd3cde1271
commit
93f26c147b
@ -1072,10 +1072,8 @@ static int dvb_register(struct cx8802_dev *dev)
|
|||||||
fe0->dvb.frontend = dvb_attach(cx24116_attach,
|
fe0->dvb.frontend = dvb_attach(cx24116_attach,
|
||||||
&tevii_s460_config,
|
&tevii_s460_config,
|
||||||
&core->i2c_adap);
|
&core->i2c_adap);
|
||||||
if (fe0->dvb.frontend != NULL) {
|
if (fe0->dvb.frontend != NULL)
|
||||||
core->prev_set_voltage = fe0->dvb.frontend->ops.set_voltage;
|
|
||||||
fe0->dvb.frontend->ops.set_voltage = tevii_dvbs_set_voltage;
|
fe0->dvb.frontend->ops.set_voltage = tevii_dvbs_set_voltage;
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
case CX88_BOARD_OMICOM_SS4_PCI:
|
case CX88_BOARD_OMICOM_SS4_PCI:
|
||||||
case CX88_BOARD_TBS_8920:
|
case CX88_BOARD_TBS_8920:
|
||||||
@ -1084,10 +1082,8 @@ static int dvb_register(struct cx8802_dev *dev)
|
|||||||
fe0->dvb.frontend = dvb_attach(cx24116_attach,
|
fe0->dvb.frontend = dvb_attach(cx24116_attach,
|
||||||
&hauppauge_hvr4000_config,
|
&hauppauge_hvr4000_config,
|
||||||
&core->i2c_adap);
|
&core->i2c_adap);
|
||||||
if (fe0->dvb.frontend != NULL) {
|
if (fe0->dvb.frontend != NULL)
|
||||||
core->prev_set_voltage = fe0->dvb.frontend->ops.set_voltage;
|
|
||||||
fe0->dvb.frontend->ops.set_voltage = tevii_dvbs_set_voltage;
|
fe0->dvb.frontend->ops.set_voltage = tevii_dvbs_set_voltage;
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
printk(KERN_ERR "%s/2: The frontend of your DVB/ATSC card isn't supported yet\n",
|
printk(KERN_ERR "%s/2: The frontend of your DVB/ATSC card isn't supported yet\n",
|
||||||
|
Loading…
Reference in New Issue
Block a user