diff options
Diffstat (limited to 'linux/drivers/media/video/ngene/ngene-core.c')
-rw-r--r-- | linux/drivers/media/video/ngene/ngene-core.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/linux/drivers/media/video/ngene/ngene-core.c b/linux/drivers/media/video/ngene/ngene-core.c index 6b01127ef..3d37ec8b4 100644 --- a/linux/drivers/media/video/ngene/ngene-core.c +++ b/linux/drivers/media/video/ngene/ngene-core.c @@ -4191,6 +4191,7 @@ static struct stv6110x_config tuner_mps2_1 = { }; #else +#if 0 static struct stv0900_reg stv0900_regs[] = { // { R0900_TSGENERAL, 0x00 }, //GPIO: @@ -4232,6 +4233,7 @@ static struct stv0900_reg stv0900_regs[] = { { 0xffff, 0xff }, /* terminate */ }; +#endif static struct stv0900_config fe_mps2 = { .demod_address = 0x68, @@ -4243,9 +4245,9 @@ static struct stv0900_config fe_mps2 = { * STV0900_SERIAL_CONT_CLOCK = 2, * STV0900_PARALLEL_PUNCT_CLOCK = 3, * STV0900_DVBCI_CLOCK = 4 */ -// .path1_mode = 1, /* => TSCFGH.TSFIFO_SERIAL & TSCFGH.TSFIFO_DVBCI */ -// .path2_mode = 1, /* => TSCFGH.TSFIFO_SERIAL & TSCFGH.TSFIFO_DVBCI */ - .ts_config_regs = stv0900_regs, + .path1_mode = 1, /* => TSCFGH.TSFIFO_SERIAL & TSCFGH.TSFIFO_DVBCI */ + .path2_mode = 1, /* => TSCFGH.TSFIFO_SERIAL & TSCFGH.TSFIFO_DVBCI */ + .ts_config_regs = NULL, .tun1_maddress = 0, /* 0x60 */ .tun2_maddress = 3, /* 0x63 */ .tun1_adc = 1, /* => if 1 TSTTNR1=0x26 */ @@ -4255,13 +4257,13 @@ static struct stv0900_config fe_mps2 = { static struct stv6110_config tuner_mps2_0 = { .i2c_address = 0x60, .mclk = 27000000, /* => CTRL1.K */ - .clk_div = 1, /* => CTRL2.CO_DIV */ + .clk_div = 0, /* => CTRL2.CO_DIV */ }; static struct stv6110_config tuner_mps2_1 = { .i2c_address = 0x63, .mclk = 27000000, /* => CTRL1.K */ - .clk_div = 1, /* => CTRL2.CO_DIV */ + .clk_div = 0, /* => CTRL2.CO_DIV */ }; #endif /* NGENE_STV090X */ |