mirror of
https://github.com/DigitalDevices/dddvb.git
synced 2023-10-10 13:37:43 +02:00
do not use dvb_attach, it is not in a seperate module
This commit is contained in:
parent
50cf06cbb8
commit
04fc90e4d6
@ -464,7 +464,11 @@ int ddb_fe_attach_mci(struct ddb_input *input)
|
|||||||
tuner = demod & 3;
|
tuner = demod & 3;
|
||||||
if (fmode == 3)
|
if (fmode == 3)
|
||||||
tuner = 0;
|
tuner = 0;
|
||||||
|
#if 0
|
||||||
dvb->fe = dvb_attach(ddb_mci_attach, input, 0, demod);
|
dvb->fe = dvb_attach(ddb_mci_attach, input, 0, demod);
|
||||||
|
#else
|
||||||
|
dvb->fe = ddb_mci_attach(input, 0, demod);
|
||||||
|
#endif
|
||||||
if (!dvb->fe) {
|
if (!dvb->fe) {
|
||||||
dev_err(dev->dev, "No MAXSX8 found!\n");
|
dev_err(dev->dev, "No MAXSX8 found!\n");
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
|
Loading…
Reference in New Issue
Block a user