1
0
mirror of https://github.com/DigitalDevices/dddvb.git synced 2023-10-10 13:37:43 +02:00

Do not attach dummy with dvb attach.

This commit is contained in:
none 2021-02-25 14:57:33 +01:00
parent abb2c56ddc
commit 28e09191af

View File

@ -1081,7 +1081,11 @@ static int demod_attach_dummy(struct ddb_input *input)
{ {
struct ddb_dvb *dvb = &input->port->dvb[input->nr & 1]; struct ddb_dvb *dvb = &input->port->dvb[input->nr & 1];
#if 0
dvb->fe = dvb_attach(dummy_attach); dvb->fe = dvb_attach(dummy_attach);
#else
dvb->fe = dummy_attach();
#endif
return 0; return 0;
} }