Re: Nova-T 500 Dual DVB-T

2009-12-22 Thread Yves
Douglas Schilling Landgraf a écrit : Hello Yves, On 12/20/2009 03:21 AM, Yves wrote: Hi, I have a Nova-T 500 Dual DVB-T card that used to work very well under Mandriva 2008.1 (kernel 2.6.24.7). I moved to Mandriva 2009.1, then 2010.0 (kernel 2.6.31.6) and it doesn't work well any more. Sca

Re: How to make a Zaapa LR301AP DVB-T card work

2009-12-22 Thread hermann pitton
Am Dienstag, den 22.12.2009, 16:41 + schrieb Antonio Marcos López Alonso: > > > > Antonio, > > > > the report for tda10046 firmware loading is missing. Was that OK? > > Yes: > > tda1004x: setting up plls for 48MHz sampling clock > tda1004x: found firmware revision 29 -- ok > > > > > LR30

[PULL] http://linuxtv.org/hg/~dougsland/miro

2009-12-22 Thread Douglas Schilling Landgraf
Hello Mauro, Please pull from http://linuxtv.org/hg/~dougsland/miro for the following: - Add header to make radio-miro compatible with kernel < 2.6.33 Cheers Douglas -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger.ker

Re: [RFC v2 4/7] V4L: Events: Add backend

2009-12-22 Thread Andy Walls
On Tue, 2009-12-22 at 18:43 +0200, Sakari Ailus wrote: > Add event handling backend to V4L2. The backend handles event subscription > and delivery to file handles. Event subscriptions are based on file handle. > Events may be delivered to all subscribed file handles on a device > independent of whe

Re: Adaptec VideOh! DVD Media Center

2009-12-22 Thread Paulo Assis
Hi, I'm having a real bad time with this, I've just noticed the strangest thing: The product id on the box changes when loading the firmware: from the initial vid:pid of 03f3:008b to 03f3:008c I guess the same also happens for 03f3:0087 to 03f3:0088 This is way the original firmware loader uses the

[PATCH] drivers/media/dvb: Move a dereference below a NULL test

2009-12-22 Thread Julia Lawall
From: Julia Lawall If the NULL test is necessary, then the dereference should be moved below the NULL test. The semantic patch that makes this change is as follows: (http://www.emn.fr/x-info/coccinelle/) // @@ type T; expression E; identifier i,fld; statement S; @@ - T i = E->fld; + T i; ..

[PATCH 2/6] drivers/media/radio: Correct use after free

2009-12-22 Thread Julia Lawall
From: Julia Lawall It is not clear how to share the unlock in the case where the structure containing the lock has to be freed. So the unlock is now duplicated, with one copy moved before the free. The unlock label furthermore is no longer useful and is thus deleted. A simplified version of th

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

2009-12-22 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 Dec 22 19:00:02 CET 2009 path:http://www.linuxtv.org/hg/v4l-dvb changeset: 13836:9defbd461e5f gcc version: gcc (

Re: flicker/jumpy at the bottom of the video

2009-12-22 Thread Jean-Francois Moine
On Mon, 23 Nov 2009 15:00:09 +0530 (IST) Purushottam R S wrote: > I am using latest gspca driver from dvb for camera driver. But I see > bottom of the video has flickering/jumping effect. > > I have "Zippys" web camera, which is from Z-Star. I have loaded the > following drivers. > 1. gspca_zc3

Re: tt s2-3200: dvb-s2 problem transponders fixed :) concerns SR 30000 3/4 8psk mode

2009-12-22 Thread Emmanuel
Newsy Paper a écrit : thanks to Andreas Regel + Manu Abraham for their work. I just tested those problem transponders. If I set SR to 29998 instead of 3 they finally work with recent s2-liplian changeset. Thank you for your great work and thanks to all the others involved in v4l driver de

[RFC v2 1/7] V4L: File handles

2009-12-22 Thread Sakari Ailus
This patch adds a list of v4l2_fh structures to every video_device. It allows using file handle related information in V4L2. The event interface is one example of such use. Video device drivers should use the v4l2_fh pointer as their file->private_data. Signed-off-by: Sakari Ailus --- drivers/m

[RFC v2 6/7] V4L: Events: Sequence numbers

2009-12-22 Thread Sakari Ailus
Add sequence numbers to events. Signed-off-by: Sakari Ailus --- drivers/media/video/v4l2-event.c |8 include/media/v4l2-event.h |1 + 2 files changed, 9 insertions(+), 0 deletions(-) diff --git a/drivers/media/video/v4l2-event.c b/drivers/media/video/v4l2-event.c index 72

[RFC v2 4/7] V4L: Events: Add backend

2009-12-22 Thread Sakari Ailus
Add event handling backend to V4L2. The backend handles event subscription and delivery to file handles. Event subscriptions are based on file handle. Events may be delivered to all subscribed file handles on a device independent of where they originate from. Signed-off-by: Sakari Ailus --- driv

[RFC v2 5/7] V4L: Events: Limit event queue length

2009-12-22 Thread Sakari Ailus
Limit event queue length to V4L2_MAX_EVENTS. If the queue is full any further events will be dropped. This patch also updates the count field properly, setting it to exactly to number of further available events. Signed-off-by: Sakari Ailus --- drivers/media/video/v4l2-event.c | 10 +-

[RFC v2 2/7] V4L: Events: Add new ioctls for events

2009-12-22 Thread Sakari Ailus
This patch adds a set of new ioctls to the V4L2 API. The ioctls conform to V4L2 Events RFC version 2.3: http://www.spinics.net/lists/linux-media/msg12033.html> Signed-off-by: Sakari Ailus --- drivers/media/video/v4l2-compat-ioctl32.c |3 +++ drivers/media/video/v4l2-ioctl.c |3

[RFC v2 3/7] V4L: Events: Support event handling in do_ioctl

2009-12-22 Thread Sakari Ailus
Add support for event handling to do_ioctl. Signed-off-by: Sakari Ailus --- drivers/media/video/v4l2-ioctl.c | 48 ++ include/media/v4l2-ioctl.h |9 +++ 2 files changed, 57 insertions(+), 0 deletions(-) diff --git a/drivers/media/video/v4l2-io

[RFC v2 7/7] V4L: Events: Support all events

2009-12-22 Thread Sakari Ailus
Add support for subscribing V4L2_EVENT_ALL. After V4L2_EVENT_ALL is subscribed, unsubscribing any event leads to unsubscription of all events. Signed-off-by: Sakari Ailus --- drivers/media/video/v4l2-event.c | 34 -- 1 files changed, 24 insertions(+), 10 deletio

[RFC v2 0/7] V4L2 file handles and event interface

2009-12-22 Thread Sakari Ailus
Hi, Here's the second version of the V4L2 file handle and event interface patchset. Still RFC since I'd like to get more feedback on it. The first patch adds the V4L2 file handle support and the rest are for V4L2 events. The patchset works with the OMAP 3 ISP driver. Patches for OMAP 3 ISP

Re: em28xx driver - xc3028 tuner - readreg error

2009-12-22 Thread Valerio Bontempi
2009/12/22 Devin Heitmueller : > On Tue, Dec 22, 2009 at 10:11 AM, Valerio Bontempi > wrote: >> Before the update, v4l-dvb driver worked fine, and now it doesn't work >> even if I remove the updated packages. >> Checking for kernel modules conflict, I found only the modules >> installed by v4l-dvb

Re: How to make a Zaapa LR301AP DVB-T card work

2009-12-22 Thread Antonio Marcos López Alonso
> > Antonio, > > the report for tda10046 firmware loading is missing. Was that OK? Yes: tda1004x: setting up plls for 48MHz sampling clock tda1004x: found firmware revision 29 -- ok > > LR301 is a LifeView design. It is very common to see multiple other > subvendors for their cards, but they

tt s2-3200: dvb-s2 problem transponders fixed :) concerns SR 30000 3/4 8psk mode

2009-12-22 Thread Newsy Paper
thanks to Andreas Regel + Manu Abraham for their work. I just tested those problem transponders. If I set SR to 29998 instead of 3 they finally work with recent s2-liplian changeset. Thank you for your great work and thanks to all the others involved in v4l driver development. kind regards

AW: [linux-dvb] Kernel oops with Technotrend S2-3200

2009-12-22 Thread Newsy Paper
Hi, it seems problem has been fixed. kind regards Newsy --- Oliver Holler schrieb am So, 20.12.2009: > Von: Oliver Holler > Betreff: [linux-dvb] Kernel oops with Technotrend S2-3200 > An: linux-...@linuxtv.org > Datum: Sonntag, 20. Dezember 2009, 19:26 > > > > > > Hello, > > I am try

Re: em28xx driver - xc3028 tuner - readreg error

2009-12-22 Thread Devin Heitmueller
On Tue, Dec 22, 2009 at 10:11 AM, Valerio Bontempi wrote: > Before the update, v4l-dvb driver worked fine, and now it doesn't work > even if I remove the updated packages. > Checking for kernel modules conflict, I found only the modules > installed by v4l-dvb sources. > #find /lib/modules/`uname -

Re: [PULL] http://www.kernellabs.com/hg/~dheitmueller/hvr-1600-alsa-2

2009-12-22 Thread Devin Heitmueller
On Tue, Dec 22, 2009 at 5:34 AM, Mauro Carvalho Chehab > Provided that you've fixed the points that Takashi rised about the alsa > part, I'm fine. Please send a separate pull request c/c him , in order > to allow him to send his ack. Ok. With the holidays upon us and my being out of town, I will

RE: [PATCH - v2 1/6] V4L - vpfe capture - header files for ISIF driver

2009-12-22 Thread Karicheri, Muralidharan
Hi Hans, If there are no more comments on this patch set, could you please merge this to your hg tree? Murali Karicheri Software Design Engineer Texas Instruments Inc. Germantown, MD 20874 phone: 301-407-9583 email: m-kariche...@ti.com >-Original Message- >From: Karicheri, Muralidharan >

em28xx driver - xc3028 tuner - readreg error

2009-12-22 Thread Valerio Bontempi
Hi all, today, after I have just installed an update for v4l-lib and v4l-lib-devel opensuse 11.2 packages, my v4l-dvb driver (compiled from sources) does not work anymore Just looking to dmesg output I find [ 806.721162] em28xx: New device TerraTec Electronic GmbH Cinergy T USB XS @ 480 Mbps (0c

Re: [PULL] http://www.kernellabs.com/hg/~dheitmueller/hvr-1600-alsa-2

2009-12-22 Thread Takashi Iwai
At Mon, 21 Dec 2009 12:30:48 -0500, Devin Heitmueller wrote: > > On Mon, Dec 21, 2009 at 12:21 PM, Takashi Iwai wrote: > > Just a very quick look through the files, here are some comments: > > > > - snd_card_free() can't be called with NULL, but the error path in > >  snd_cx18_init() may reach th

Re: [PULL] http://www.kernellabs.com/hg/~dheitmueller/hvr-1600-alsa-2

2009-12-22 Thread Mauro Carvalho Chehab
Em 22-12-2009 01:50, Devin Heitmueller escreveu: > On Mon, Dec 21, 2009 at 10:24 PM, Mauro Carvalho Chehab > wrote: >> In the case of this patch series, the complains are not related to 80 cols: > > > In this case, there was a mix of 80-column issues, as well as some > other issues. Yes, there

[PATCH 10/10] media/dvb: add __init/__exit macros to drivers/media/dvb/bt8xx/bt878.c

2009-12-22 Thread peterhuewe
From: Peter Huewe Trivial patch which adds the __init/__exit macros to the module_init/ module_exit functions of drivers/media/dvb/bt8xx/bt878.c Please have a look at the small patch and either pull it through your tree, or please ack' it so Jiri can pull it through the trivial tree. Patch aga