All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 2/2] V4L: Enable s-video input on DViCO FusionHDTV5 Lite
@ 2005-10-08  1:04 mchehab
  2005-10-11 15:52 ` Mike Krufky
  0 siblings, 1 reply; 3+ messages in thread
From: mchehab @ 2005-10-08  1:04 UTC (permalink / raw)
  To: linux-kernel; +Cc: video4linux-list, akpm

From: Michael Krufky <mkrufky@linuxtv.org>

    * bttv-cards.c:
    - Enable S-Video input on DViCO FusionHDTV5 Lite

    Signed-off-by: Michael Krufky <mkrufky@m1k.net>
    Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br>

 bttv-cards.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

------------------

diff -upr linux-2.6.14-rc3-git7/drivers/media/video/bttv-cards.c linux/drivers/media/video/bttv-cards.c
--- linux-2.6.14-rc3-git7/drivers/media/video/bttv-cards.c	2005-10-07 14:54:38.915668669 -0500
+++ linux/drivers/media/video/bttv-cards.c	2005-10-07 15:46:58.019236100 -0500
@@ -2393,10 +2393,10 @@ struct tvcard bttv_tvcards[] = {
 	.tuner          = 0,
 	.tuner_type     = TUNER_LG_TDVS_H062F,
 	.tuner_addr	= ADDR_UNSET,
-	.video_inputs   = 2,
+	.video_inputs   = 3,
 	.audio_inputs   = 1,
 	.svhs           = 2,
-	.muxsel		= { 2, 3 },
+	.muxsel		= { 2, 3, 1 },
 	.gpiomask       = 0x00e00007,
 	.audiomux       = { 0x00400005, 0, 0x00000001, 0, 0x00c00007, 0 },
 	.no_msp34xx     = 1,

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

* Re: [PATCH 2/2] V4L: Enable s-video input on DViCO FusionHDTV5 Lite
  2005-10-08  1:04 [PATCH 2/2] V4L: Enable s-video input on DViCO FusionHDTV5 Lite mchehab
@ 2005-10-11 15:52 ` Mike Krufky
  2005-10-11 16:26   ` Andrew Morton
  0 siblings, 1 reply; 3+ messages in thread
From: Mike Krufky @ 2005-10-11 15:52 UTC (permalink / raw)
  To: akpm; +Cc: linux-kernel

mchehab@brturbo.com.br wrote:

>From: Michael Krufky <mkrufky@linuxtv.org>
>
>    * bttv-cards.c:
>    - Enable S-Video input on DViCO FusionHDTV5 Lite
>
>    Signed-off-by: Michael Krufky <mkrufky@m1k.net>
>    Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br>
>
> bttv-cards.c |    4 ++--
> 1 files changed, 2 insertions(+), 2 deletions(-)
>
>------------------
>
>diff -upr linux-2.6.14-rc3-git7/drivers/media/video/bttv-cards.c linux/drivers/media/video/bttv-cards.c
>--- linux-2.6.14-rc3-git7/drivers/media/video/bttv-cards.c	2005-10-07 14:54:38.915668669 -0500
>+++ linux/drivers/media/video/bttv-cards.c	2005-10-07 15:46:58.019236100 -0500
>@@ -2393,10 +2393,10 @@ struct tvcard bttv_tvcards[] = {
> 	.tuner          = 0,
> 	.tuner_type     = TUNER_LG_TDVS_H062F,
> 	.tuner_addr	= ADDR_UNSET,
>-	.video_inputs   = 2,
>+	.video_inputs   = 3,
> 	.audio_inputs   = 1,
> 	.svhs           = 2,
>-	.muxsel		= { 2, 3 },
>+	.muxsel		= { 2, 3, 1 },
> 	.gpiomask       = 0x00e00007,
> 	.audiomux       = { 0x00400005, 0, 0x00000001, 0, 0x00c00007, 0 },
> 	.no_msp34xx     = 1,
>-
>To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
>the body of a message to majordomo@vger.kernel.org
>More majordomo info at  http://vger.kernel.org/majordomo-info.html
>Please read the FAQ at  http://www.tux.org/lkml/
>  
>
Andrew-

I hate to be a nudge... This patch corrects an oversight when I had 
originally programmed this board.  This 2-line change adds support for 
s-video input on this card. Everything works without this patch, except 
for s-video.   It would be silly for this to be missing from 2.6.14.

Please apply this patch and send it over to Linus before he releases 2.6.14.

DVB support for this board is ready now too, but we will send that in 
our 2.6.15 patchset, as it makes some larger changes to dvb-bt8xx.c

Thank you.

Michael Krufky



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

* Re: [PATCH 2/2] V4L: Enable s-video input on DViCO FusionHDTV5 Lite
  2005-10-11 15:52 ` Mike Krufky
@ 2005-10-11 16:26   ` Andrew Morton
  0 siblings, 0 replies; 3+ messages in thread
From: Andrew Morton @ 2005-10-11 16:26 UTC (permalink / raw)
  To: Michael Krufky; +Cc: linux-kernel

Mike Krufky <mkrufky@linuxtv.org> wrote:
>
> I hate to be a nudge... 

Nudge considered useful.  At this stage in the release cycle it's important
that patch originators tell me which patches they consider to be urgent,
thanks.

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

end of thread, other threads:[~2005-10-11 16:26 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-10-08  1:04 [PATCH 2/2] V4L: Enable s-video input on DViCO FusionHDTV5 Lite mchehab
2005-10-11 15:52 ` Mike Krufky
2005-10-11 16:26   ` Andrew Morton

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.