mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* (no subject)
@ 2005-07-19 12:23 frosts1
  2005-07-19 12:28 ` [PATCH] DVICO Fusion DVB-T1 Tuner (LG-Z201) frosts1
  0 siblings, 1 reply; 2+ messages in thread
From: frosts1 @ 2005-07-19 12:23 UTC (permalink / raw)
  To: akpm; +Cc: js, linux-kernel

Andrew,

Johannes Stezenbach (of dvb-kernel) suggested that I send this patch 
directly to you since I am anxious to get it into the kernel and he
felt 2.6.13 may be released soon (but who knows).

It is a small modification to the table that defines the way that 
the LG-Z201 tuner is controlled for the DVICO Fusion DVB-T1 tuner 
card.

I believe that a mistake was made when the dvb tuner code was 
reorganised (to use a generic table for the tuner information 
instead of inline code) and as a result, the DVICO card doesn't tune 
properly.

The modification I have made to the table makes it behave like it 
did with the old inline tuner code that worked. The patch is on
top of the 2.6.12 kernel.

Please personally cc me with any response as I am not subscribed to lkml.

Patch Description: Fix the way the LG-Z201 tuner is controlled for the DVICO Fusion DVB-T1 card.

Signed-off-by: Gregory B Frost <frosts1@hotkey.net.au>
Signed-off-by: Johannes Stezenbach <js@linuxtv.org>

diff -ru linux-2.6.12-clean/drivers/media/dvb/frontends/dvb-pll.c linux-2.6.12/drivers/media/dvb/frontends/dvb-pll.c
--- linux-2.6.12-clean/drivers/media/dvb/frontends/dvb-pll.c	2005-06-17 19:48:29.000000000 +0000
+++ linux-2.6.12/drivers/media/dvb/frontends/dvb-pll.c	2005-07-02 22:25:31.000000000 +0000
@@ -84,13 +84,14 @@
 	.name  = "LG z201",
 	.min   = 174000000,
 	.max   = 862000000,
-	.count = 5,
+	.count = 6,
 	.entries = {
 		{          0, 36166667, 166666, 0xbc, 0x03 },
-		{  443250000, 36166667, 166666, 0xbc, 0x01 },
-		{  542000000, 36166667, 166666, 0xbc, 0x02 },
-		{  830000000, 36166667, 166666, 0xf4, 0x02 },
-		{  999999999, 36166667, 166666, 0xfc, 0x02 },
+		{  157500000, 36166667, 166666, 0xbc, 0x01 },
+		{  443250000, 36166667, 166666, 0xbc, 0x02 },
+		{  542000000, 36166667, 166666, 0xbc, 0x04 },
+		{  830000000, 36166667, 166666, 0xf4, 0x04 },
+		{  999999999, 36166667, 166666, 0xfc, 0x04 },
 	},
 };
 EXPORT_SYMBOL(dvb_pll_lg_z201);


^ permalink raw reply	[flat|nested] 2+ messages in thread

* [PATCH] DVICO Fusion DVB-T1 Tuner (LG-Z201)
  2005-07-19 12:23 frosts1
@ 2005-07-19 12:28 ` frosts1
  0 siblings, 0 replies; 2+ messages in thread
From: frosts1 @ 2005-07-19 12:28 UTC (permalink / raw)
  To: frosts1; +Cc: akpm, js, linux-kernel

Andrew,

I apologise profusely for initially sending this message without a 
subject.

Johannes Stezenbach (of dvb-kernel) suggested that I send this patch 
directly to you since I am anxious to get it into the kernel and he
felt 2.6.13 may be released soon (but who knows).

It is a small modification to the table that defines the way that 
the LG-Z201 tuner is controlled for the DVICO Fusion DVB-T1 tuner 
card.

I believe that a mistake was made when the dvb tuner code was 
reorganised (to use a generic table for the tuner information 
instead of inline code) and as a result, the DVICO card doesn't tune 
properly.

The modification I have made to the table makes it behave like it 
did with the old inline tuner code that worked. The patch is on
top of the 2.6.12 kernel.

Please personally cc me with any response as I am not subscribed to lkml.

Patch Description: Fix the way the LG-Z201 tuner is controlled for the DVICO Fusion DVB-T1 card.

Signed-off-by: Gregory B Frost <frosts1@hotkey.net.au>
Signed-off-by: Johannes Stezenbach <js@linuxtv.org>

diff -ru linux-2.6.12-clean/drivers/media/dvb/frontends/dvb-pll.c linux-2.6.12/drivers/media/dvb/frontends/dvb-pll.c
--- linux-2.6.12-clean/drivers/media/dvb/frontends/dvb-pll.c	2005-06-17 19:48:29.000000000 +0000
+++ linux-2.6.12/drivers/media/dvb/frontends/dvb-pll.c	2005-07-02 22:25:31.000000000 +0000
@@ -84,13 +84,14 @@
 	.name  = "LG z201",
 	.min   = 174000000,
 	.max   = 862000000,
-	.count = 5,
+	.count = 6,
 	.entries = {
 		{          0, 36166667, 166666, 0xbc, 0x03 },
-		{  443250000, 36166667, 166666, 0xbc, 0x01 },
-		{  542000000, 36166667, 166666, 0xbc, 0x02 },
-		{  830000000, 36166667, 166666, 0xf4, 0x02 },
-		{  999999999, 36166667, 166666, 0xfc, 0x02 },
+		{  157500000, 36166667, 166666, 0xbc, 0x01 },
+		{  443250000, 36166667, 166666, 0xbc, 0x02 },
+		{  542000000, 36166667, 166666, 0xbc, 0x04 },
+		{  830000000, 36166667, 166666, 0xf4, 0x04 },
+		{  999999999, 36166667, 166666, 0xfc, 0x04 },
 	},
 };
 EXPORT_SYMBOL(dvb_pll_lg_z201);


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2005-07-19 12:27 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-07-19 12:23 frosts1
2005-07-19 12:28 ` [PATCH] DVICO Fusion DVB-T1 Tuner (LG-Z201) frosts1

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®