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
1 changed files with 4 additions and 0 deletions

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];
#if 0
dvb->fe = dvb_attach(dummy_attach);
#else
dvb->fe = dummy_attach();
#endif
return 0;
}