Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5ad5e4845b441a00e4165e2c2e3ac8507db9cbe6
Commit:     5ad5e4845b441a00e4165e2c2e3ac8507db9cbe6
Parent:     9a95735dde206d2b3575c6368172206535c9bb4e
Author:     Pat Erley <[EMAIL PROTECTED]>
AuthorDate: Tue May 8 09:36:09 2007 -0300
Committer:  Mauro Carvalho Chehab <[EMAIL PROTECTED]>
CommitDate: Wed May 9 10:12:55 2007 -0300

    V4L/DVB (5602): Enable DiSEqC in Starbox II (vp7021a)
    
    Uncomments code in vp702x-fe.c to enable DiSEqC in vp7021a
    
    Signed-off-by: Mauro Carvalho Chehab <[EMAIL PROTECTED]>
    Signed-off-by: Pat Erley <[EMAIL PROTECTED]>
    Signed-off-by: Patrick Boettcher <[EMAIL PROTECTED]>
---
 drivers/media/dvb/dvb-usb/vp702x-fe.c |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/drivers/media/dvb/dvb-usb/vp702x-fe.c 
b/drivers/media/dvb/dvb-usb/vp702x-fe.c
index 3ecb2e0..c3fdc7c 100644
--- a/drivers/media/dvb/dvb-usb/vp702x-fe.c
+++ b/drivers/media/dvb/dvb-usb/vp702x-fe.c
@@ -204,8 +204,8 @@ static int vp702x_fe_get_frontend(struct dvb_frontend* fe,
 static int vp702x_fe_send_diseqc_msg (struct dvb_frontend* fe,
                                    struct dvb_diseqc_master_cmd *m)
 {
-       //struct vp702x_fe_state *st = fe->demodulator_priv;
-       u8 cmd[8];//,ibuf[10];
+       struct vp702x_fe_state *st = fe->demodulator_priv;
+       u8 cmd[8],ibuf[10];
        memset(cmd,0,8);
 
        deb_fe("%s\n",__FUNCTION__);
@@ -218,12 +218,12 @@ static int vp702x_fe_send_diseqc_msg (struct 
dvb_frontend* fe,
        memcpy(&cmd[3], m->msg, m->msg_len);
        cmd[7] = vp702x_chksum(cmd,0,7);
 
-//     vp702x_usb_inout_op(st->d,cmd,8,ibuf,10,100);
+       vp702x_usb_inout_op(st->d,cmd,8,ibuf,10,100);
 
-//     if (ibuf[2] == 0 && ibuf[3] == 0)
-//             deb_fe("diseqc cmd failed.\n");
-//     else
-//             deb_fe("diseqc cmd succeeded.\n");
+       if (ibuf[2] == 0 && ibuf[3] == 0)
+               deb_fe("diseqc cmd failed.\n");
+       else
+               deb_fe("diseqc cmd succeeded.\n");
 
        return 0;
 }
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to