mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-15 17:14:00 +08:00
V4L/DVB (13792): [Mantis/VP-2033] Do not claim TDA10023
Do not rely on the PCI ID alone Signed-off-by: Niklas Edmundsson <nikke@acc.umu.se> Signed-off-by: Manu Abraham <manu@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
4af699c13a
commit
ec1b6ff1cc
@ -263,30 +263,31 @@ int __devinit mantis_frontend_init(struct mantis_pci *mantis)
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case MANTIS_VP_2033_DVB_C: // VP-2033
|
case MANTIS_VP_2033_DVB_C: // VP-2033
|
||||||
dprintk(verbose, MANTIS_ERROR, 1, "Probing for CU1216 (DVB-C)");
|
|
||||||
mantis->fe = tda10021_attach(&philips_cu1216_config, &mantis->adapter, read_pwm(mantis));
|
|
||||||
if (mantis->fe) {
|
|
||||||
mantis->fe->ops.tuner_ops.set_params = philips_cu1216_tuner_set;
|
|
||||||
dprintk(verbose, MANTIS_ERROR, 1,
|
|
||||||
"found Philips CU1216 DVB-C frontend (TDA10021) @ 0x%02x",
|
|
||||||
philips_cu1216_config.demod_address);
|
|
||||||
|
|
||||||
dprintk(verbose, MANTIS_ERROR, 1,
|
|
||||||
"Mantis DVB-C Philips CU1216 frontend attach success");
|
|
||||||
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case MANTIS_VP_2040_DVB_C: // VP-2040
|
case MANTIS_VP_2040_DVB_C: // VP-2040
|
||||||
case TERRATEC_CINERGY_C_PCI:
|
case TERRATEC_CINERGY_C_PCI:
|
||||||
case TECHNISAT_CABLESTAR_HD2:
|
case TECHNISAT_CABLESTAR_HD2:
|
||||||
dprintk(verbose, MANTIS_ERROR, 1, "Probing for CU1216 (DVB-C)");
|
dprintk(verbose, MANTIS_ERROR, 1, "Probing for CU1216 (DVB-C)");
|
||||||
mantis->fe = tda10023_attach(&tda10023_cu1216_config, &mantis->adapter, read_pwm(mantis));
|
mantis->fe = tda10021_attach(&philips_cu1216_config,
|
||||||
|
&mantis->adapter,
|
||||||
|
read_pwm(mantis));
|
||||||
|
|
||||||
|
if (mantis->fe) {
|
||||||
|
dprintk(verbose, MANTIS_ERROR, 1,
|
||||||
|
"found Philips CU1216 DVB-C frontend (TDA10021) @ 0x%02x",
|
||||||
|
philips_cu1216_config.demod_address);
|
||||||
|
} else {
|
||||||
|
mantis->fe = tda10023_attach(&tda10023_cu1216_config,
|
||||||
|
&mantis->adapter,
|
||||||
|
read_pwm(mantis));
|
||||||
|
|
||||||
|
if (mantis->fe) {
|
||||||
|
dprintk(verbose, MANTIS_ERROR, 1,
|
||||||
|
"found Philips CU1216 DVB-C frontend (TDA10023) @ 0x%02x",
|
||||||
|
philips_cu1216_config.demod_address);
|
||||||
|
}
|
||||||
|
}
|
||||||
if (mantis->fe) {
|
if (mantis->fe) {
|
||||||
mantis->fe->ops.tuner_ops.set_params = philips_cu1216_tuner_set;
|
mantis->fe->ops.tuner_ops.set_params = philips_cu1216_tuner_set;
|
||||||
dprintk(verbose, MANTIS_ERROR, 1,
|
|
||||||
"found Philips CU1216 DVB-C frontend (TDA10023) @ 0x%02x",
|
|
||||||
philips_cu1216_config.demod_address);
|
|
||||||
|
|
||||||
dprintk(verbose, MANTIS_ERROR, 1,
|
dprintk(verbose, MANTIS_ERROR, 1,
|
||||||
"Mantis DVB-C Philips CU1216 frontend attach success");
|
"Mantis DVB-C Philips CU1216 frontend attach success");
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user