diff options
author | Manu Abraham <manu@linuxtv.org> | 2009-04-06 22:46:50 +0400 |
---|---|---|
committer | Manu Abraham <manu@linuxtv.org> | 2009-04-06 22:46:50 +0400 |
commit | bd6cdb0ea9b6db322a484ad00da53cdd7307fc43 (patch) | |
tree | 44deee8338d730a9ae862e62e5bfec986d6b1b7e /linux/drivers/media/dvb/ttpci | |
parent | 045548622863911d1e32b2264efbf076d970ece4 (diff) | |
download | mediapointer-dvb-s2-bd6cdb0ea9b6db322a484ad00da53cdd7307fc43.tar.gz mediapointer-dvb-s2-bd6cdb0ea9b6db322a484ad00da53cdd7307fc43.tar.bz2 |
Fix incorrect default CLOCK setup
From: Andreas Regel <andreas.regel@gmx.de>
Signed-off-by: Andreas Regel <andreas.regel@gmx.de>
Signed-off-by: MAnu Abraham <manu@linuxtv.org>
Diffstat (limited to 'linux/drivers/media/dvb/ttpci')
-rw-r--r-- | linux/drivers/media/dvb/ttpci/budget-ci.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/linux/drivers/media/dvb/ttpci/budget-ci.c b/linux/drivers/media/dvb/ttpci/budget-ci.c index bab8a041c..2e05479dc 100644 --- a/linux/drivers/media/dvb/ttpci/budget-ci.c +++ b/linux/drivers/media/dvb/ttpci/budget-ci.c @@ -1360,11 +1360,11 @@ static struct stb6100_config tt3200_stb6100_config = { static struct stv090x_config tt1600_stv090x_config = { .device = STV0903, .demod_mode = STV090x_SINGLE, - .clk_mode = STV090x_CLK_INT, + .clk_mode = STV090x_CLK_EXT, - .xtal = 8000000, + .xtal = 27000000, .address = 0x68, - .ref_clk = 16000000, + .ref_clk = 27000000, .ts1_mode = STV090x_TSMODE_DVBCI, .ts2_mode = STV090x_TSMODE_DVBCI, @@ -1383,11 +1383,11 @@ static struct stv090x_config tt1600_stv090x_config = { static struct stv6110x_config tt1600_stv6110x_config = { .addr = 0x60, - .refclk = 16000000, + .refclk = 27000000, }; static struct isl6423_config tt1600_isl6423_config = { - .current_max = SEC_CURRENT_800m, + .current_max = SEC_CURRENT_515m, .curlim = SEC_CURRENT_LIM_ON, .addr = 0x08, }; |