do not use dvb_attach, it is not in a seperate module

This commit is contained in:
Ralph Metzler 2017-12-07 19:31:44 +01:00
parent 50cf06cbb8
commit 04fc90e4d6
1 changed files with 4 additions and 0 deletions

View File

@ -464,7 +464,11 @@ int ddb_fe_attach_mci(struct ddb_input *input)
tuner = demod & 3;
if (fmode == 3)
tuner = 0;
#if 0
dvb->fe = dvb_attach(ddb_mci_attach, input, 0, demod);
#else
dvb->fe = ddb_mci_attach(input, 0, demod);
#endif
if (!dvb->fe) {
dev_err(dev->dev, "No MAXSX8 found!\n");
return -ENODEV;