Re: [PATCH] input: imon driver for SoundGraph iMON/Antec Veris IR devices

2009-12-28 Thread Jarod Wilson
Hey Dmitry, Thanks much for the review, comments inline below... On Dec 28, 2009, at 4:31 AM, Dmitry Torokhov wrote: > Hi Jarod, > > On Mon, Dec 28, 2009 at 12:11:55AM -0500, Jarod Wilson wrote: >> This is an input layer driver for the SoundGraph iMON and Antec >> Veris IR and/or Display (LCD/V

Re: [linux-dvb] Acoustical mode for femon

2009-12-28 Thread Mika Laitio
The monitoring application produces a sound indicating the signal quality. The higher the beep the better the signal quality. This is useful while mounting the antenna for finding the best position without having to look at the monitor or without even having a monitor. Thank you for this! Very

cx18: leadtec pvr 2100 card fix

2009-12-28 Thread Sergey Bolshakov
Hi. Seems cx18 module has incorrect .xceive_pin value for card, as i see lots of i2c errors in dmesg from xc2028. i'm using 2.6.32.2, my hardware is: # lspci -vnns 00:09.0 00:09.0 Multimedia video controller [0400]: Conexant Systems, Inc. CX23418 Single-Chip MPEG-2 Encoder with Integrated Analog

Re: Which modules for the VP-2033? Where is the module "mantis.ko"?

2009-12-28 Thread Aljaž Prusnik
On pon, 2009-12-28 at 20:28 +0100, Aljaž Prusnik wrote: > On pon, 2009-12-28 at 02:23 +0400, Manu Abraham wrote: > > Can you please do a lspci -vn for the Mantis card you have ? Also try > > loading the mantis.ko module with verbose=5 module parameter, to get > > more debug information. > To cont

Re: Which modules for the VP-2033? Where is the module "mantis.ko"?

2009-12-28 Thread Aljaž Prusnik
On pon, 2009-12-28 at 02:23 +0400, Manu Abraham wrote: > Can you please do a lspci -vn for the Mantis card you have ? Also try > loading the mantis.ko module with verbose=5 module parameter, to get > more debug information. $ lspci -vn 03:07.0 0480: 1822:4e35 (rev 01) Subsystem: 1ae4:0002

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

2009-12-28 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:Mon Dec 28 19:00:03 CET 2009 path:http://www.linuxtv.org/hg/v4l-dvb changeset: 13848:75c97b2d1a2a gcc version: gcc (

Re: Mantis driver on TechniSat "CableStar HD 2"

2009-12-28 Thread Wolfgang Denk
Dear Manu Abraham, In message <1a297b360912271420g154e34a4gab4382de3a316...@mail.gmail.com> you wrote: > > If you can successfully tune and get a valid TS from the DVR device, > you can rule out issues with the card and the driver. > You can verify the functionality of the hardware and driver wi

Re: Nova-T 500 Dual DVB-T

2009-12-28 Thread Yves
So, I tried using kernel 2.6.32.2 from http://www.kernel.org. I compiled it OK. I still get an error with v4l-dvb : [myt...@localhost v4l-dvb]$ make -j 5 make -C /home/mythtv/v4l-dvb/v4l

[patch] fix weird array index in zl10036.c

2009-12-28 Thread Dan Carpenter
I was initially concerned about the weird array index (the 2 bumps into the next row of the array). Matthias Schwarzott look at the datasheet and it turns out it should be zl10036_init_tab[1][0] |= 0x01; Signed-off-by: Dan Carpenter --- orig/drivers/media/dvb/frontends/zl10036.c 2009-12-28 19:

[patch] cx25821: fix double unlock in medusa_video_init()

2009-12-28 Thread Dan Carpenter
medusa_set_videostandard() takes the lock but it always drops it before returning. This was found with a static checker and compile tested only. :/ Signed-off-by: Dan Carpenter --- orig/drivers/staging/cx25821/cx25821-medusa-video.c 2009-12-28 09:13:01.0 +0200 +++ devel/drivers/stagin

RE: [PATCH/RFC v2.1 0/2] Mem-to-mem device framework

2009-12-28 Thread Pawel Osciak
Hello Hans, On Wednesday 23 December 2009 16:06:18 Hans Verkuil wrote: > Thank you for working on this! It's much appreciated. Now I've noticed that > patches regarding memory-to-memory and memory pool tend to get very few > comments. > I suspect that the main reason is that these are SoC-specif

[PATCH] drivers/media/video: Correct NULL test

2009-12-28 Thread Julia Lawall
From: Julia Lawall Test the just-allocated value for NULL rather than some other value. The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // @r@ identifier f; @@ f(...) { <+... return NULL; ...+> } @@ expression *x; expression y; identifier r.f; statement