Mailing List archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[linux-dvb] little bug in av7110.c?



Hi,

shouldn't av7110.c lines 3718ff. be changed from

        case FE_DISEQC_SEND_MASTER_CMD:
        {
                struct dvb_diseqc_master_cmd *cmd = arg;

                SendDiSEqCMsg (av7110, cmd->msg_len, cmd->msg, 0);
                break;
        }
to
        case FE_DISEQC_SEND_MASTER_CMD:
        {
                struct dvb_diseqc_master_cmd *cmd = arg;

                SendDiSEqCMsg (av7110, cmd->msg_len, cmd->msg, -1);
                break;
        }

The current code code will always select MINI_A in each DiSEqC-command?
IMHO, it's better *not* to send any BURST by default.


Wolfgang


-- 
Info:
To unsubscribe send a mail to listar@linuxtv.org with "unsubscribe linux-dvb" as subject.



Home | Main Index | Thread Index