Re: [PATCH] Enabling of the Winfast TV2000 XP Global TV capture card remote control

2009-04-20 Thread hermann pitton
Hi Pieter,

Am Montag, den 20.04.2009, 09:47 +0200 schrieb Pieter Van Schaik:
 The Winfast TV2000 XP Global video capture card IR remote keys were
 not initialized and handled in cx88-input.c; added two corresponding
 case statements, where this card's remote works exactly the same as
 the DTV1000's.
 
 Signed-off-by: Pieter C van Schaik vanste...@gmail.com
 ---
 --- linux-2.6.29/drivers/media/video/cx88/cx88-input.c.orig
 2009-04-01 12:38:34.0 +0200
 +++ linux-2.6.29/drivers/media/video/cx88/cx88-input.c  2009-04-01
 12:39:07.0 +0200
 @@ -92,6 +92,7 @@ static void cx88_ir_handle_key(struct cx
   gpio=(gpio  0x7fd) + (auxgpio  0xef);
   break;
   case CX88_BOARD_WINFAST_DTV1000:
 + case CX88_BOARD_WINFAST_TV2000_XP_GLOBAL:
   gpio = (gpio  0x6ff) | ((cx_read(MO_GP1_IO)  8)  0x900);
   auxgpio = gpio;
   break;
 @@ -239,6 +240,7 @@ int cx88_ir_init(struct cx88_core *core,
   break;
   case CX88_BOARD_WINFAST2000XP_EXPERT:
   case CX88_BOARD_WINFAST_DTV1000:
 + case CX88_BOARD_WINFAST_TV2000_XP_GLOBAL:
   ir_codes = ir_codes_winfast;
   ir-gpio_addr = MO_GP0_IO;
   ir-mask_keycode = 0x8f8;

this is at least your third try on it, but it doesn't make it into
http://patchwork.kernel.org/project/linux-media/list

Broken lines and indentation with spaces instead of tabs for what I get.

Also it has an offset of four lines for the second hunk on recent
mercurial v4l-dvb. Use hg diff to create it on that and don't send
patches against 2.6.29. Try README.patches and run at least make
checkpatch once. This gives an ERROR for wrong indentation and so on.

Else try to tweak your mailer or also send as .patch attachment like the
one below for testing.

Cheers,
Hermann

diff -r ac3865b16886 linux/drivers/media/video/cx88/cx88-input.c
--- a/linux/drivers/media/video/cx88/cx88-input.c	Mon Apr 20 08:47:22 2009 -0300
+++ b/linux/drivers/media/video/cx88/cx88-input.c	Mon Apr 20 15:25:19 2009 +0200
@@ -92,6 +92,7 @@
 		gpio=(gpio  0x7fd) + (auxgpio  0xef);
 		break;
 	case CX88_BOARD_WINFAST_DTV1000:
+	case CX88_BOARD_WINFAST_TV2000_XP_GLOBAL:
 		gpio = (gpio  0x6ff) | ((cx_read(MO_GP1_IO)  8)  0x900);
 		auxgpio = gpio;
 		break;
@@ -243,6 +244,7 @@
 		break;
 	case CX88_BOARD_WINFAST2000XP_EXPERT:
 	case CX88_BOARD_WINFAST_DTV1000:
+	case CX88_BOARD_WINFAST_TV2000_XP_GLOBAL:
 		ir_codes = ir_codes_winfast;
 		ir-gpio_addr = MO_GP0_IO;
 		ir-mask_keycode = 0x8f8;


[PATCH] Enabling of the Winfast TV2000 XP Global TV capture card remote control

2009-04-08 Thread Pieter Van Schaik
From: Pieter Van Schaik vanste...@gmail.com
Date: Mon, Apr 6, 2009 at 1:52 PM
Subject: [PATCH] Enabling of the Winfast TV2000 XP Global TV capture
card  remote control
To: linux-media@vger.kernel.org


From: Pieter C van Schaik vanste...@gmail.com

The Winfast TV2000 XP Global video capture card IR remote keys were
not initialized and handled in cx88-input.c; added two corresponding
case statements, where this card's remote works exactly the same as
the DTV1000's.

Signed-off-by: Pieter C van Schaik vanste...@gmail.com
---
--- linux-2.6.29/drivers/media/video/cx88/cx88-input.c.orig
2009-04-01 12:38:34.0 +0200
+++ linux-2.6.29/drivers/media/video/cx88/cx88-input.c  2009-04-01
12:39:07.0 +0200
@@ -92,6 +92,7 @@ static void cx88_ir_handle_key(struct cx
               gpio=(gpio  0x7fd) + (auxgpio  0xef);
               break;
       case CX88_BOARD_WINFAST_DTV1000:
+       case CX88_BOARD_WINFAST_TV2000_XP_GLOBAL:
               gpio = (gpio  0x6ff) | ((cx_read(MO_GP1_IO)  8)  0x900);
               auxgpio = gpio;
               break;
@@ -239,6 +240,7 @@ int cx88_ir_init(struct cx88_core *core,
               break;
       case CX88_BOARD_WINFAST2000XP_EXPERT:
       case CX88_BOARD_WINFAST_DTV1000:
+       case CX88_BOARD_WINFAST_TV2000_XP_GLOBAL:
               ir_codes = ir_codes_winfast;
               ir-gpio_addr = MO_GP0_IO;
               ir-mask_keycode = 0x8f8;
--
To unsubscribe from this list: send the line unsubscribe linux-media in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH] Enabling of the Winfast TV2000 XP Global TV capture card remote control

2009-04-06 Thread Pieter Van Schaik
From: Pieter C van Schaik vanste...@gmail.com

The Winfast TV2000 XP Global video capture card IR remote keys were
not initialized and handled in cx88-input.c; added two corresponding
case statements, where this card's remote works exactly the same as
the DTV1000's.

Signed-off-by: Pieter C van Schaik vanste...@gmail.com
---
--- linux-2.6.29/drivers/media/video/cx88/cx88-input.c.orig
2009-04-01 12:38:34.0 +0200
+++ linux-2.6.29/drivers/media/video/cx88/cx88-input.c  2009-04-01
12:39:07.0 +0200
@@ -92,6 +92,7 @@ static void cx88_ir_handle_key(struct cx
gpio=(gpio  0x7fd) + (auxgpio  0xef);
break;
case CX88_BOARD_WINFAST_DTV1000:
+   case CX88_BOARD_WINFAST_TV2000_XP_GLOBAL:
gpio = (gpio  0x6ff) | ((cx_read(MO_GP1_IO)  8)  0x900);
auxgpio = gpio;
break;
@@ -239,6 +240,7 @@ int cx88_ir_init(struct cx88_core *core,
break;
case CX88_BOARD_WINFAST2000XP_EXPERT:
case CX88_BOARD_WINFAST_DTV1000:
+   case CX88_BOARD_WINFAST_TV2000_XP_GLOBAL:
ir_codes = ir_codes_winfast;
ir-gpio_addr = MO_GP0_IO;
ir-mask_keycode = 0x8f8;
--
To unsubscribe from this list: send the line unsubscribe linux-media in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html