Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=cf83ac433c275b8a652492cabdb39b88a7f8d45c
Commit:     cf83ac433c275b8a652492cabdb39b88a7f8d45c
Parent:     80d352374be7ac88a23fb427d146ac9a71beff90
Author:     Hartmut Hackmann <[EMAIL PROTECTED]>
AuthorDate: Tue Mar 13 20:52:35 2007 -0300
Committer:  Mauro Carvalho Chehab <[EMAIL PROTECTED]>
CommitDate: Fri Apr 27 15:44:50 2007 -0300

    V4L/DVB (5444): Saa7134-dvb fix sleep function of the fmd1216 tuner.
    
    Static locals should not be changed - the original contents gets lost.
    Thanks to Trent Piepho for pointing me to this.
    
    Signed-off-by: Hartmut Hackmann <[EMAIL PROTECTED]>
    Signed-off-by: Mauro Carvalho Chehab <[EMAIL PROTECTED]>
---
 drivers/media/video/saa7134/saa7134-dvb.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/media/video/saa7134/saa7134-dvb.c 
b/drivers/media/video/saa7134/saa7134-dvb.c
index aa17873..531eb57 100644
--- a/drivers/media/video/saa7134/saa7134-dvb.c
+++ b/drivers/media/video/saa7134/saa7134-dvb.c
@@ -468,7 +468,7 @@ static int philips_fmd1216_tuner_sleep(struct dvb_frontend 
*fe)
        struct tda1004x_state *state = fe->demodulator_priv;
        u8 addr = state->config->tuner_address;
        /* this message actually turns the tuner back to analog mode */
-       static u8 fmd1216_init[] = { 0x0b, 0xdc, 0x9c, 0x60 };
+       u8 fmd1216_init[] = { 0x0b, 0xdc, 0x9c, 0x60 };
        struct i2c_msg tuner_msg = {.addr = addr,.flags = 0,.buf = 
fmd1216_init,.len = sizeof(fmd1216_init) };
 
        if (fe->ops.i2c_gate_ctrl)
-
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