aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteven Toth <stoth@kernellabs.com>2009-05-16 13:43:51 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2009-06-16 17:21:13 -0400
commita884c63cae986cadb6d604f3599a5cf54444f7d2 (patch)
tree28f9b53bb931a3d10b93a66f5dbeeaabeaadda24
parent08b83583dcc09260784b398783ac47e13d351fdc (diff)
V4L/DVB (11857): TDA10048: Missing two I/F's / Pll combinations from the PLL table
This was causing a lock failure in Australia. Signed-off-by: Steven Toth <stoth@kernellabs.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r--drivers/media/dvb/frontends/tda10048.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/media/dvb/frontends/tda10048.c b/drivers/media/dvb/frontends/tda10048.c
index 6707832bdcab..4302c563a6b8 100644
--- a/drivers/media/dvb/frontends/tda10048.c
+++ b/drivers/media/dvb/frontends/tda10048.c
@@ -208,8 +208,10 @@ static struct pll_tab {
208 u8 m, n, p; 208 u8 m, n, p;
209} pll_tab[] = { 209} pll_tab[] = {
210 { TDA10048_CLK_4000, TDA10048_IF_36130, 10, 0, 0 }, 210 { TDA10048_CLK_4000, TDA10048_IF_36130, 10, 0, 0 },
211 { TDA10048_CLK_16000, TDA10048_IF_4300, 10, 3, 0 }, 211 { TDA10048_CLK_16000, TDA10048_IF_3300, 10, 3, 0 },
212 { TDA10048_CLK_16000, TDA10048_IF_3500, 10, 3, 0 },
212 { TDA10048_CLK_16000, TDA10048_IF_4000, 10, 3, 0 }, 213 { TDA10048_CLK_16000, TDA10048_IF_4000, 10, 3, 0 },
214 { TDA10048_CLK_16000, TDA10048_IF_4300, 10, 3, 0 },
213 { TDA10048_CLK_16000, TDA10048_IF_36130, 10, 3, 0 }, 215 { TDA10048_CLK_16000, TDA10048_IF_36130, 10, 3, 0 },
214}; 216};
215 217