summaryrefslogtreecommitdiff
path: root/linux/drivers/media/dvb/frontends/tda10048.c
diff options
context:
space:
mode:
authorSteven Toth <stoth@kernellabs.com>2009-05-16 13:43:51 -0400
committerSteven Toth <stoth@kernellabs.com>2009-05-16 13:43:51 -0400
commitabbf3f268166b272916a7af0e798e10e06394926 (patch)
treed135055004c4dd6559281e2c9f3728c3d3237b00 /linux/drivers/media/dvb/frontends/tda10048.c
parent9b5c764e4dc2cb4ec07a83f17113b7228dba03f6 (diff)
downloadmediapointer-dvb-s2-abbf3f268166b272916a7af0e798e10e06394926.tar.gz
mediapointer-dvb-s2-abbf3f268166b272916a7af0e798e10e06394926.tar.bz2
TDA10048: Missing two I/F's / Pll combinations from the PLL table
From: Steven Toth <stoth@kernellabs.com> This was causing a lock failure in Australia. Priority: normal Signed-off-by: Steven Toth <stoth@kernellabs.com>
Diffstat (limited to 'linux/drivers/media/dvb/frontends/tda10048.c')
-rw-r--r--linux/drivers/media/dvb/frontends/tda10048.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/linux/drivers/media/dvb/frontends/tda10048.c b/linux/drivers/media/dvb/frontends/tda10048.c
index 9bc1ba786..04596baa9 100644
--- a/linux/drivers/media/dvb/frontends/tda10048.c
+++ b/linux/drivers/media/dvb/frontends/tda10048.c
@@ -208,8 +208,10 @@ static struct pll_tab {
u8 m, n, p;
} pll_tab[] = {
{ TDA10048_CLK_4000, TDA10048_IF_36130, 10, 0, 0 },
- { TDA10048_CLK_16000, TDA10048_IF_4300, 10, 3, 0 },
+ { TDA10048_CLK_16000, TDA10048_IF_3300, 10, 3, 0 },
+ { TDA10048_CLK_16000, TDA10048_IF_3500, 10, 3, 0 },
{ TDA10048_CLK_16000, TDA10048_IF_4000, 10, 3, 0 },
+ { TDA10048_CLK_16000, TDA10048_IF_4300, 10, 3, 0 },
{ TDA10048_CLK_16000, TDA10048_IF_36130, 10, 3, 0 },
};