diff options
author | Hartmut Hackmann <devnull@localhost> | 2005-06-14 22:50:42 +0000 |
---|---|---|
committer | Hartmut Hackmann <devnull@localhost> | 2005-06-14 22:50:42 +0000 |
commit | d054649cd53c13ab932b5ce73fee104c6e4cda25 (patch) | |
tree | 645ee2a4f412fa234dce45dcf881c1a7d46157c9 /linux/drivers/media/video/tda8290.c | |
parent | c80dcdfa33625ec46035063101a1cd7d6bbb3ef1 (diff) | |
download | mediapointer-dvb-s2-d054649cd53c13ab932b5ce73fee104c6e4cda25.tar.gz mediapointer-dvb-s2-d054649cd53c13ab932b5ce73fee104c6e4cda25.tar.bz2 |
- initialize tuner to sleep mode to save power
Signed-off-by: Hartmut Hackmann <hartmut.hackmann@t-online.de>
Diffstat (limited to 'linux/drivers/media/video/tda8290.c')
-rw-r--r-- | linux/drivers/media/video/tda8290.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linux/drivers/media/video/tda8290.c b/linux/drivers/media/video/tda8290.c index e0681d088..26dc94b14 100644 --- a/linux/drivers/media/video/tda8290.c +++ b/linux/drivers/media/video/tda8290.c @@ -1,5 +1,5 @@ /* - * $Id: tda8290.c,v 1.7 2005/03/07 12:01:51 kraxel Exp $ + * $Id: tda8290.c,v 1.8 2005/06/14 22:50:42 hhackmann Exp $ * * i2c tv tuner chip device driver * controls the philips tda8290+75 tuner chip combo. @@ -70,7 +70,7 @@ static __u8 get_freq_entry( struct freq_entry* table, __u16 freq) static unsigned char i2c_enable_bridge[2] = { 0x21, 0xC0 }; static unsigned char i2c_disable_bridge[2] = { 0x21, 0x80 }; static unsigned char i2c_init_tda8275[14] = { 0x00, 0x00, 0x00, 0x00, - 0x7C, 0x04, 0xA3, 0x3F, + 0xfC, 0x04, 0xA3, 0x3F, 0x2A, 0x04, 0xFF, 0x00, 0x00, 0x40 }; static unsigned char i2c_set_VS[2] = { 0x30, 0x6F }; |