Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f5ae29e284b328e0976789d5c199bbbe80e4b005
Commit:     f5ae29e284b328e0976789d5c199bbbe80e4b005
Parent:     d9a5c0a4e0b4c84850a1a5bbacba3f7858b67037
Author:     Michael Krufky <[EMAIL PROTECTED]>
AuthorDate: Sat Mar 24 13:21:53 2007 -0400
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Sat Mar 24 16:49:22 2007 -0700

    [PATCH] cx88-dvb: fix nxt200x rf input switching
    
    After dvb tuner refactoring, the pllbuff has been altered such that the pll
    address is now stored in buf[0].  Instead of sending buf to set_pll_input,
    we should send buf+1.
    
    Signed-off-by: Michael Krufky <[EMAIL PROTECTED]>
    Cc: Mauro Carvalho Chehab <[EMAIL PROTECTED]>
    Cc: Ivan Andrewjeski <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 drivers/media/dvb/frontends/nxt200x.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/media/dvb/frontends/nxt200x.c 
b/drivers/media/dvb/frontends/nxt200x.c
index 87c286e..b809f83 100644
--- a/drivers/media/dvb/frontends/nxt200x.c
+++ b/drivers/media/dvb/frontends/nxt200x.c
@@ -562,7 +562,7 @@ static int nxt200x_setup_frontend_parameters (struct 
dvb_frontend* fe,
 
                        /* set input */
                        if (state->config->set_pll_input)
-                               state->config->set_pll_input(buf, 1);
+                               state->config->set_pll_input(buf+1, 1);
                        break;
                case VSB_8:
                        /* Set non-punctured clock for VSB */
@@ -571,7 +571,7 @@ static int nxt200x_setup_frontend_parameters (struct 
dvb_frontend* fe,
 
                        /* set input */
                        if (state->config->set_pll_input)
-                               state->config->set_pll_input(buf, 0);
+                               state->config->set_pll_input(buf+1, 0);
                        break;
                default:
                        return -EINVAL;
-
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