[PATCH] viacam: Don't explode if pci_find_bus() returns NULL

2011-07-03 Thread Jesper Juhl
In the unlikely case that pci_find_bus() should return NULL viacam_serial_is_enabled() is going to dereference a NULL pointer and blow up. Better safe than sorry, so be defensive and check the pointer. Signed-off-by: Jesper Juhl j...@chaosbits.net --- drivers/media/video/via-camera.c |2 ++

[GIT PATCHES FOR 3.0] gspca for_v3.0

2011-07-03 Thread Jean-Francois Moine
The following changes since commit 215c52702775556f4caf5872cc84fa8810e6fc7d: [media] V4L/videobuf2-memops: use pr_debug for debug messages (2011-06-01 18:20:34 -0300) are available in the git repository at: git://linuxtv.org/jfrancois/gspca.git for_v3.0 Jean-François Moine (2): gspca

[GIT PATCHES FOR 3.1] gspca for_v3.1

2011-07-03 Thread Jean-Francois Moine
The following changes since commit df6aabbeb2b8799d97f3886fc994c318bc6a6843: [media] v4l2-ctrls.c: add support for V4L2_EVENT_SUB_FL_ALLOW_FEEDBACK (2011-07-01 20:54:51 -0300) are available in the git repository at: git://linuxtv.org/jfrancois/gspca.git for_v3.1 Frank Schaefer (1):

Re: Fwd: 0bda:2838 Ezcap DVB USB adaptor - no device files created / RTL2831U/RTL2832U

2011-07-03 Thread Arthur Marsh
Joel Stanley wrote, on 03/07/11 12:17: Hello Jan, On Sun, Jul 3, 2011 at 05:53, Jan Hoogenraad jan-conceptro...@hoogenraad.net wrote: I have decided AGAINST making it runnable on newer kernels, as there are some people working right now on a new release. I appreciate that you would prefer

Xawtv version 3.101 released

2011-07-03 Thread Mauro Carvalho Chehab
Today, we're releasing the version 3.101 of xawtv, with the following fixes: * Man fix to remove mention of v4l1, and describe libv4l instead * Fixes at fr/es manuals * Warning fixes * Addition of alsa streaming at xawtv: now, for devices with video associated with audio inputs. * Use X11

Re: [PATCH] media/at91sam9x5-video: new driver for the high end overlay on at91sam9x5

2011-07-03 Thread Sylwester Nawrocki
Hello Uwe, On 07/02/2011 10:09 PM, Uwe Kleine-König wrote: Hello Sylwester, thanks for your feedback. A few comments below. For the statements I don't reply to, you can consider a OK, will be fixed in v2. On Fri, Jul 01, 2011 at 11:20:32PM +0200, Sylwester Nawrocki wrote: On 06/29/2011

[PATCH 00/16] New drivers: DRX-K, TDA18271c2, Updates: CXD2099 and ngene

2011-07-03 Thread Oliver Endriss
[PATCH 01/16] tda18271c2dd: Initial check-in [PATCH 02/16] tda18271c2dd: Lots of coding-style fixes [PATCH 03/16] DRX-K: Initial check-in [PATCH 04/16] DRX-K: Shrink size of drxk_map.h [PATCH 05/16] DRX-K: Tons of coding-style fixes [PATCH 06/16] DRX-K, TDA18271c2: Add build support [PATCH 07/16]

[PATCH v4 0/2] USB: EHCI: Allow users to override 80% max periodic bandwidth

2011-07-03 Thread Kirill Smelkov
There are cases, when 80% max isochronous bandwidth is too limiting. Let's allow knowledgeable users to override that 80% max limit explicitly for extreme cases, like 2 high bandwidth isochronously streaming devices on the same High Speed USB bus in order to make them work simultaneously. See

[PATCH v4 1/2] USB: EHCI: Move sysfs related bits into ehci-sysfs.c

2011-07-03 Thread Kirill Smelkov
The only sysfs attr implemented so far is companion from ehci-hub.c, but in the next patch we are going to add another sysfs file, so prior to that let's structure things and move already-in-there sysfs code to separate file. NOTE: All the code I'm moving into this new file was written by Alan

[PATCH v4 2/2] USB: EHCI: Allow users to override 80% max periodic bandwidth

2011-07-03 Thread Kirill Smelkov
There are cases, when 80% max isochronous bandwidth is too limiting. For example I have two USB video capture cards which stream uncompressed video, and to stream full NTSC + PAL videos we'd need NTSC 640x480 YUV422 @30fps ~17.6 MB/s PAL 720x576 YUV422 @25fps ~19.7 MB/s isoc

[PATCH 01/16] tda18271c2dd: Initial check-in

2011-07-03 Thread Oliver Endriss
From: Ralph Metzler r...@metzlerbros.de Driver for the NXP TDA18271c2 silicon tuner. Signed-off-by: Ralph Metzler r...@metzlerbros.de Signed-off-by: Oliver Endriss o.endr...@gmx.de --- drivers/media/dvb/frontends/tda18271c2dd.c | 1063 +++

[PATCH 06/16] DRX-K, TDA18271c2: Add build support

2011-07-03 Thread Oliver Endriss
Add both drivers to Makefile and Kconfig. Signed-off-by: Oliver Endriss o.endr...@gmx.de --- drivers/media/dvb/frontends/Kconfig | 21 + drivers/media/dvb/frontends/Makefile |3 +++ 2 files changed, 24 insertions(+), 0 deletions(-) diff --git

[PATCH 07/16] get_dvb_firmware: Get DRX-K firmware for Digital Devices DVB-CT cards

2011-07-03 Thread Oliver Endriss
Get DRX-K firmware for Digital Devices DVB-CT cards Signed-off-by: Oliver Endriss o.endr...@gmx.de --- Documentation/dvb/get_dvb_firmware | 20 +++- 1 files changed, 19 insertions(+), 1 deletions(-) diff --git a/Documentation/dvb/get_dvb_firmware

[PATCH 09/16] ngene: Codingstyle fixes

2011-07-03 Thread Oliver Endriss
Codingstyle fixes Signed-off-by: Oliver Endriss o.endr...@gmx.de --- drivers/media/dvb/ngene/ngene-cards.c | 36 +--- drivers/media/dvb/ngene/ngene-core.c | 14 ++-- drivers/media/dvb/ngene/ngene-dvb.c |4 +- drivers/media/dvb/ngene/ngene.h |

[PATCH 08/16] ngene: Support Digital Devices DuoFlex CT

2011-07-03 Thread Oliver Endriss
From: Ralph Metzler rmetz...@digitaldevices.de Support Digital Devices DuoFlex CT with ngene. Signed-off-by: Ralph Metzler rmetz...@digitaldevices.de Signed-off-by: Oliver Endriss o.endr...@gmx.de --- drivers/media/dvb/ngene/Kconfig |2 + drivers/media/dvb/ngene/ngene-cards.c | 176

[PATCH 10/16] ngene: Fix return code if no demux was found

2011-07-03 Thread Oliver Endriss
Fix return code if no demux was found (cineS2_probe). Signed-off-by: Oliver Endriss o.endr...@gmx.de --- drivers/media/dvb/ngene/ngene-cards.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/media/dvb/ngene/ngene-cards.c b/drivers/media/dvb/ngene/ngene-cards.c

[PATCH 11/16] ngene: Fix name of Digital Devices PCIe/miniPCIe

2011-07-03 Thread Oliver Endriss
Fix name of Digital Devices PCIe/miniPCIe. Signed-off-by: Oliver Endriss o.endr...@gmx.de --- drivers/media/dvb/ngene/ngene-cards.c |8 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/media/dvb/ngene/ngene-cards.c b/drivers/media/dvb/ngene/ngene-cards.c index

[PATCH 12/16] ngene: Support DuoFlex CT attached to CineS2 and SaTiX-S2

2011-07-03 Thread Oliver Endriss
Support DuoFlex CT with Digital Devices CineS2 and Mystique SaTiX-S2. Signed-off-by: Oliver Endriss o.endr...@gmx.de --- drivers/media/dvb/ngene/ngene-cards.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/media/dvb/ngene/ngene-cards.c

[PATCH 13/16] cxd2099: Update to latest version

2011-07-03 Thread Oliver Endriss
From: Ralph Metzler rmetz...@digitaldevices.de Import latest driver from ddbridge-0.6.1.tar.bz2. Signed-off-by: Ralph Metzler rmetz...@digitaldevices.de Signed-off-by: Oliver Endriss o.endr...@gmx.de --- drivers/staging/cxd2099/cxd2099.c | 250 -

[PATCH 14/16] cxd2099: Codingstyle fixes

2011-07-03 Thread Oliver Endriss
Codingstyle fixes. Signed-off-by: Oliver Endriss o.endr...@gmx.de --- drivers/staging/cxd2099/cxd2099.c | 75 ++--- drivers/staging/cxd2099/cxd2099.h |6 +- 2 files changed, 40 insertions(+), 41 deletions(-) diff --git a/drivers/staging/cxd2099/cxd2099.c

[PATCH 15/16] ngene: Update for latest cxd2099

2011-07-03 Thread Oliver Endriss
Modifications for latest cxd2099. Signed-off-by: Oliver Endriss o.endr...@gmx.de --- drivers/media/dvb/ngene/ngene-core.c |9 - 1 files changed, 8 insertions(+), 1 deletions(-) diff --git a/drivers/media/dvb/ngene/ngene-core.c b/drivers/media/dvb/ngene/ngene-core.c index

[PATCH 16/16] ngene: Strip dummy packets inserted by the driver

2011-07-03 Thread Oliver Endriss
As the CI requires a continuous data stream, the driver inserts dummy packets when necessary. Do not pass these packets to userspace anymore. Signed-off-by: Oliver Endriss o.endr...@gmx.de --- drivers/media/dvb/ngene/ngene-core.c |2 +- drivers/media/dvb/ngene/ngene-dvb.c | 42

[PATCH 04/16] DRX-K: Shrink size of drxk_map.h

2011-07-03 Thread Oliver Endriss
As the patch is too large, it is available from here: http://escape-edv.de/endriss/tmp/dvb-20110703/0004-drxk-Shrink-size-of-drxk_map.h.patch CU Oliver -- To unsubscribe from this list: send the line unsubscribe linux-media in the body of a message to majord...@vger.kernel.org More majordomo

[PATCH 03/16] DRX-K: Initial check-in

2011-07-03 Thread Oliver Endriss
As the patch is too large, it is available from here: http://escape-edv.de/endriss/tmp/dvb-20110703/0003-drxk-Initial-check-in.patch CU Oliver -- 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

[cron job] v4l-dvb daily build: ERRORS

2011-07-03 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:Sun Jul 3 19:00:33 CEST 2011 git hash:df6aabbeb2b8799d97f3886fc994c318bc6a6843 gcc version: i686-linux-gcc (GCC)

[GIT PATCHES FOR 3.1] New SE401 driver + major pwc driver cleanup

2011-07-03 Thread Hans de Goede
Hi All, I'm happy to present my latest webcam work to you: I could not just stand by watching the old v4l1 se401 driver (which has been broken for a long while btw) get removed from the kernel, without writing a replacement, so I'm happy to present a new, actually working, gspca based v4l2

Kudos for the new vtl2 ctrls framework

2011-07-03 Thread Hans de Goede
Hi all, After making some serious use of it in the pwc driver cleanup I would like to thank Hans V. for all his hard work on the new ctrl framework. The clusters bit got a bit getting used to / but once I did it is great. Once you get it, it really makes sense to group certain ctrls into

Vacation

2011-07-03 Thread Hans de Goede
Hi All, This will be one of my last mails as I'm leaving for vacation tomorrow. I'll be back July 12th Regards, Hans -- 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

Re: [ANNOUNCE] Media subsystem workshop 2011 - Prague - Oct 24-26

2011-07-03 Thread Hans de Goede
Hi Mauro, On Wednesday 22 June 2011 20:33:34 Mauro Carvalho Chehab wrote: Media subsystem workshop 2011 - Prague - Oct 24-26 Since 2007, we're doing annual mini-summits for the media subsystem, in order to plan the new features that will be introduced there. Last year, during the Kernel

[PATCH 2/2] mceusb: increase default timeout to 100ms

2011-07-03 Thread Rafi Rubin
Signed-off-by: Rafi Rubin r...@seas.upenn.edu --- This changes the default to something a little more sane. I have one mceusb device that currently does not respond properly to the initial polling and is left using the default timeout. 1ms does not work well. I propose changing the default to

[PATCH 1/2] mceusb: Timeout unit corrections

2011-07-03 Thread Rafi Rubin
Unit missmatch in mceusb_handle_command. It should be converting to us, not 1/10th of ms. mceusb_dev_printdata 100us/ms - 1000us/ms Signed-off-by: Rafi Rubin r...@seas.upenn.edu --- Fixing the interpretation of the timeout corrects buggy behavior, particularly when using a mceusb reciever in

RE: [PATCH] STV0288 Fast Channel Acquisition

2011-07-03 Thread Malcolm Priestley
On Fri, 2011-07-01 at 10:15 +0200, Sébastien RAILLARD (COEXSI) wrote: -Original Message- From: linux-media-ow...@vger.kernel.org [mailto:linux-media- ow...@vger.kernel.org] On Behalf Of Malcolm Priestley Sent: vendredi 1 juillet 2011 00:22 To: Linux Media Mailing List Cc:

[PATCH 0/5] Driver support for cards based on Digital Devices bridge (ddbridge)

2011-07-03 Thread Oliver Endriss
[PATCH 1/5] ddbridge: Initial check-in [PATCH 2/5] ddbridge: Codingstyle fixes [PATCH 3/5] ddbridge: Allow compiling of the driver [PATCH 4/5] cxd2099: Fix compilation of ngene/ddbridge for DVB_CXD2099=n [PATCH 5/5] cxd2099: Update Kconfig descrition (ddbridge support) Note: This patch series

PATCH 1/5] ddbridge: Initial check-in

2011-07-03 Thread Oliver Endriss
From: Ralph Metzler rmetz...@digitaldevices.de Driver support for Digital Devices ddbridge-based cards: Octopus, Octopus mini, Octopus LE, cineS2(v6) with DuoFlex S2 and/or DuoFlex CT tuners. Driver was taken from ddbridge-0.6.1.tar.bz2. Signed-off-by: Ralph Metzler rmetz...@digitaldevices.de

[PATCH 2/5] ddbridge: Codingstyle fixes

2011-07-03 Thread Oliver Endriss
Codingstyle fixes Signed-off-by: Oliver Endriss o.endr...@gmx.de --- drivers/media/dvb/ddbridge/ddbridge-core.c | 191 drivers/media/dvb/ddbridge/ddbridge-regs.h | 62 +- drivers/media/dvb/ddbridge/ddbridge.h |8 +- 3 files changed, 144

[PATCH 3/5] ddbridge: Allow compiling of the driver

2011-07-03 Thread Oliver Endriss
Driver added to Makefile and Kconfig. Signed-off-by: Oliver Endriss o.endr...@gmx.de --- drivers/media/dvb/Kconfig |4 drivers/media/dvb/Makefile |3 ++- drivers/media/dvb/ddbridge/Kconfig | 18 ++ drivers/media/dvb/ddbridge/Makefile | 14

[PATCH 5/5] cxd2099: Update Kconfig description (ddbridge support)

2011-07-03 Thread Oliver Endriss
Update Kconfig description (ddbridge with cxd2099) Signed-off-by: Oliver Endriss o.endr...@gmx.de --- drivers/staging/cxd2099/Kconfig | 11 ++- 1 files changed, 6 insertions(+), 5 deletions(-) diff --git a/drivers/staging/cxd2099/Kconfig b/drivers/staging/cxd2099/Kconfig index

[PATCH 4/5] cxd2099: Fix compilation of ngene/ddbridge for DVB_CXD2099=n

2011-07-03 Thread Oliver Endriss
Fix compilation of ngene/ddbridge for DVB_CXD2099=n. Note: Bug was introduced by commit 'cxd2099: Update to latest version'. Signed-off-by: Oliver Endriss o.endr...@gmx.de --- drivers/staging/cxd2099/cxd2099.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git

Re: [PATCH 0/5] Driver support for cards based on Digital Devices bridge (ddbridge)

2011-07-03 Thread Mauro Carvalho Chehab
Hi Oliver, Em 03-07-2011 18:21, Oliver Endriss escreveu: [PATCH 1/5] ddbridge: Initial check-in [PATCH 2/5] ddbridge: Codingstyle fixes [PATCH 3/5] ddbridge: Allow compiling of the driver [PATCH 4/5] cxd2099: Fix compilation of ngene/ddbridge for DVB_CXD2099=n [PATCH 5/5] cxd2099: Update

Re: [PATCH 0/5] Driver support for cards based on Digital Devices bridge (ddbridge)

2011-07-03 Thread Oliver Endriss
Hi Mauro, On Monday 04 July 2011 00:27:54 Mauro Carvalho Chehab wrote: Hi Oliver, Em 03-07-2011 18:21, Oliver Endriss escreveu: [PATCH 1/5] ddbridge: Initial check-in [PATCH 2/5] ddbridge: Codingstyle fixes [PATCH 3/5] ddbridge: Allow compiling of the driver [PATCH 4/5] cxd2099: Fix

Re: [PATCH 5/5] cxd2099: Update Kconfig description (ddbridge support)

2011-07-03 Thread Walter Van Eetvelt
Oliver Endriss schreef op Sun 03-07-2011 om 23:27 [+0200]: Update Kconfig description (ddbridge with cxd2099) Signed-off-by: Oliver Endriss o.endr...@gmx.de --- drivers/staging/cxd2099/Kconfig | 11 ++- 1 files changed, 6 insertions(+), 5 deletions(-) diff --git

Re: [PATCH 0/5] Driver support for cards based on Digital Devices bridge (ddbridge)

2011-07-03 Thread Mauro Carvalho Chehab
Em 03-07-2011 20:24, Oliver Endriss escreveu: Hi Mauro, On Monday 04 July 2011 00:27:54 Mauro Carvalho Chehab wrote: Hi Oliver, Em 03-07-2011 18:21, Oliver Endriss escreveu: [PATCH 1/5] ddbridge: Initial check-in [PATCH 2/5] ddbridge: Codingstyle fixes [PATCH 3/5] ddbridge: Allow

Re: [PATCH] media: initial driver for ov5642 CMOS sensor

2011-07-03 Thread Angela Wan
Hi, Bastian,    Could the setting in ov5642.c like ov5642_default_regs_init and ov5642_default_regs_finalise adapt to different board? From my experience, ov5642 may have difference settings for differnt boards. So could we put the setting in another file instead of in the common driver?

RE: [GIT PULL for v3.0] OMAP_VOUT bug fixes and code cleanup

2011-07-03 Thread Hiremath, Vaibhav
-Original Message- From: Mauro Carvalho Chehab [mailto:mche...@redhat.com] Sent: Saturday, July 02, 2011 12:19 AM To: Hiremath, Vaibhav Cc: linux-media@vger.kernel.org Subject: Re: [GIT PULL for v3.0] OMAP_VOUT bug fixes and code cleanup Em 22-06-2011 16:32, hvaib...@ti.com

Re: [Linaro-mm-sig] [PATCH 08/10] mm: cma: Contiguous Memory Allocator added

2011-07-03 Thread Ankita Garg
Hi, On Thu, Jun 16, 2011 at 12:06:07AM +0200, Arnd Bergmann wrote: On Wednesday 15 June 2011 23:39:58 Larry Bassel wrote: On 15 Jun 11 10:36, Marek Szyprowski wrote: On Tuesday, June 14, 2011 10:42 PM Arnd Bergmann wrote: On Tuesday 14 June 2011 20:58:25 Zach Pfeffer wrote:

RE: [ RFC PATCH 0/8] RFC for Media Controller capture driver for DM365

2011-07-03 Thread Hadli, Manjunath
Sakari, Thank you for the comments. My responses inlined. -Manjunath On Thu, Jun 30, 2011 at 19:27:36, Sakari Ailus wrote: Hi Manjunath, Thanks for the patches. On Thu, Jun 30, 2011 at 06:43:09PM +0530, Manjunath Hadli wrote: Thease are the RFC patches for the DM365 video capture, of