Re: [PATCH] tm6000 fix i2c

2010-04-27 Thread Bee Hock Goh
wiki is your best friend. :) http://www.linuxtv.org/wiki/index.php/Maintaining_Git_trees http://www.linuxtv.org/wiki/index.php/Using_a_git_driver_development_tree On Tue, Apr 27, 2010 at 1:15 PM, Dmitri Belimov d.beli...@gmail.com wrote: On Mon, 26 Apr 2010 20:58:24 +0800 Bee Hock Goh

RE: [PATCH] V4L: Events: Include slab.h explicitly

2010-04-27 Thread Aguirre, Sergio
Sakari, This patch is based on your event branch: http://gitorious.org/omap3camera/mainline/commits/event And is required on latest kernel to compile v4l2-event.c, to make use of kmalloc and other slab.h functions/defines. Regards, Sergio -Original Message- From: Aguirre, Sergio

[GIT PULL] V4L2 file handles and event interface, take 3

2010-04-27 Thread Sakari Ailus
Hi Mauro, Rebased the patches. Sergio's fix and the minor style problem were fixed. Otherwise they are the same. Please pull. The following changes since commit 1fa9d4c07f3ddee1c054a751cd78e53e8b9050b4: Mauro Carvalho Chehab (1): V4L/DVB: videobuf-dma-sg: Avoid using a wrong size

Re: [PATCH] V4L: Events: Include slab.h explicitly

2010-04-27 Thread Mauro Carvalho Chehab
Aguirre, Sergio wrote: Sakari, This patch is based on your event branch: http://gitorious.org/omap3camera/mainline/commits/event And is required on latest kernel to compile v4l2-event.c, to make use of kmalloc and other slab.h functions/defines. True. Sakari, Please, add this patch

support for micron MT9[M/T]xxx sensors with CY7C68013 (Cypress FX2) bridge cameras

2010-04-27 Thread Tiemen
Hello developers, I recently got hold of two USB c-mount cameras with Micron CMOS chips. One is a Mightex MCE-B013 (MT9M001 sensor), the other a development kit with MT9T031 sensor. I had hoped to use these with v4l2, as drivers for these sensors are in the code tree. Initial attemps to

Re: [PATCH] V4L: Events: Include slab.h explicitly

2010-04-27 Thread Mauro Carvalho Chehab
Sakari Ailus wrote: Mauro Carvalho Chehab wrote: Aguirre, Sergio wrote: Sakari, This patch is based on your event branch: http://gitorious.org/omap3camera/mainline/commits/event And is required on latest kernel to compile v4l2-event.c, to make use of kmalloc and other slab.h

RE: [PATCH-V7] OMAP2/3 V4L2: Add support for OMAP2/3 V4L2 driver on top of DSS2

2010-04-27 Thread Aguirre, Sergio
Vaibhav, -Original Message- From: linux-media-ow...@vger.kernel.org [mailto:linux-media- ow...@vger.kernel.org] On Behalf Of Hiremath, Vaibhav Sent: Wednesday, April 07, 2010 5:01 AM To: linux-media@vger.kernel.org Cc: mche...@redhat.com; Karicheri, Muralidharan; hverk...@xs4all.nl;

[cron job] v4l-dvb daily build 2.6.22 and up: ERRORS, 2.6.16-2.6.21: WARNINGS

2010-04-27 Thread Hans Verkuil
This message is generated daily by a cron job that builds v4l-dvb for the kernels and architectures in the list below. Results of the daily build of v4l-dvb: date:Tue Apr 27 19:00:20 CEST 2010 path:http://www.linuxtv.org/hg/v4l-dvb changeset: 14592:b438301e588f git master:

Re: [PATCH] V4L: Events: Include slab.h explicitly

2010-04-27 Thread Sakari Ailus
Hi Mauro, Mauro Carvalho Chehab wrote: Sakari Ailus wrote: Mauro Carvalho Chehab wrote: Aguirre, Sergio wrote: Sakari, This patch is based on your event branch: http://gitorious.org/omap3camera/mainline/commits/event And is required on latest kernel to compile v4l2-event.c, to make use

[patch 02/11] dib7000p: reduce large stack usage

2010-04-27 Thread akpm
From: Randy Dunlap randy.dun...@oracle.com Reduce the static stack usage of one of the 2 top offenders as listed by 'make checkstack': Building with CONFIG_FRAME_WARN=2048 produces: drivers/media/dvb/frontends/dib7000p.c:1367: warning: the frame size of 2320 bytes is larger than 2048 bytes

[patch 01/11] dib3000mc: reduce large stack usage

2010-04-27 Thread akpm
From: Randy Dunlap randy.dun...@oracle.com Reduce the static stack usage of one of the 2 top offenders as listed by 'make checkstack': Building with CONFIG_FRAME_WARN=2048 produces: drivers/media/dvb/frontends/dib3000mc.c:853: warning: the frame size of 2224 bytes is larger than 2048 bytes

[patch 10/11] ir-keytable: avoid double lock

2010-04-27 Thread akpm
From: Dan Carpenter erro...@gmail.com It's possible that we wanted to resize to a smaller size but we didn't have enough memory to create the new table. We need to test for that here so we don't try to lock twice and dead lock. Also we free the oldkeymap on that path and that would be bad.

[patch 05/11] drivers/media/video/au0828/au0828-video.c: off by one bug

2010-04-27 Thread akpm
From: Dan Carpenter erro...@gmail.com The AUVI_INPUT(tmp) macro uses tmp as an index of an array with AU0828_MAX_INPUT elements. Signed-off-by: Dan Carpenter erro...@gmail.com Cc: Mauro Carvalho Chehab mche...@infradead.org Cc: Laurent Pinchart laurent.pinch...@ideasonboard.com Cc: Hans Verkuil

[patch 09/11] cx88: improve error handling

2010-04-27 Thread akpm
From: Dan Carpenter erro...@gmail.com Return -EINVAL if we don't find the right query control id. Signed-off-by: Dan Carpenter erro...@gmail.com Cc: Mauro Carvalho Chehab mche...@infradead.org Cc: Hans Verkuil hverk...@xs4all.nl Cc: Laurent Pinchart laurent.pinch...@ideasonboard.com

[patch 07/11] drivers/media/video/et61x251/et61x251_core.c: improve error handling

2010-04-27 Thread akpm
From: Dan Carpenter erro...@gmail.com The original code doesn't handle the situation where the controller is not found. Signed-off-by: Dan Carpenter erro...@gmail.com Cc: Luca Risolia luca.riso...@studio.unibo.it Cc: Mauro Carvalho Chehab mche...@infradead.org Cc: Laurent Pinchart

[patch 11/11] cx231xx: improve error handling

2010-04-27 Thread akpm
From: Dan Carpenter erro...@gmail.com Return -EINVAL if we don't find the control id. Signed-off-by: Dan Carpenter erro...@gmail.com Cc: Mauro Carvalho Chehab mche...@infradead.org Cc: Laurent Pinchart laurent.pinch...@ideasonboard.com Cc: Trent Piepho xy...@speakeasy.org Cc: Douglas Schilling

[PATCH] Staging: tm6000: fix coding style issues of tm6000-cards.c

2010-04-27 Thread Roel Van Nyen
fix coding style issues Signed-off-by: Roel Van Nyen roel.vann...@gmail.com --- drivers/staging/tm6000/tm6000-cards.c | 131 - 1 files changed, 63 insertions(+), 68 deletions(-) diff --git a/drivers/staging/tm6000/tm6000-cards.c

[PATCH] Staging: tm6000: fix coding style issues of tm6000-cards.c

2010-04-27 Thread Roel Van Nyen
fix coding style issues Signed-off-by: Roel Van Nyen roel.vann...@gmail.com --- drivers/staging/tm6000/tm6000-cards.c | 131 - 1 files changed, 63 insertions(+), 68 deletions(-) diff --git a/drivers/staging/tm6000/tm6000-cards.c

Re: [patch 02/11] dib7000p: reduce large stack usage

2010-04-27 Thread Andreas Oberritter
a...@linux-foundation.org wrote: diff -puN drivers/media/dvb/frontends/dib7000p.c~dib7000p-reduce-large-stack-usage drivers/media/dvb/frontends/dib7000p.c --- a/drivers/media/dvb/frontends/dib7000p.c~dib7000p-reduce-large-stack-usage +++ a/drivers/media/dvb/frontends/dib7000p.c @@ -1324,46

AVerTV Volar HD PRO (A835)

2010-04-27 Thread Honza Stodola
Hi, I'm trying to use AVerTV Volar HD PRO (A835) in Linux, but it seems the USB receiver is not supported by current kernel (2.6.34-rc5). Sending some logs and configuration, let me know if you need some more. Any help is appreciated. Thanks, Honza Product page:

Re: [PATCH] tm6000 fix i2c

2010-04-27 Thread Dmitri Belimov
On Tue, 27 Apr 2010 14:07:00 +0800 Bee Hock Goh beeh...@gmail.com wrote: wiki is your best friend. :) http://www.linuxtv.org/wiki/index.php/Maintaining_Git_trees http://www.linuxtv.org/wiki/index.php/Using_a_git_driver_development_tree Ok. This is new version. Made by git. diff --git

Re: [PATCH 00/15] ir-core: Several improvements to allow adding LIRC and decoder plugins

2010-04-27 Thread Jarod Wilson
On Sat, Apr 24, 2010 at 1:12 AM, David Härdeman da...@hardeman.nu wrote: On Fri, Apr 23, 2010 at 01:40:34PM -0400, Jarod Wilson wrote: So now that I'm more or less done with porting the imon driver, I think I'm ready to start tackling the mceusb driver. But I'm debating on what approach to

tm6000

2010-04-27 Thread Dmitri Belimov
Hi Anyone can watch TV with tm6000 module?? I try mplayer. My PC crashed inside copy_streams function after some time. With my best regards, Dmitry. -- 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