Avermedia a800 suspend crash

2010-05-15 Thread davor emard
HI Avermedia a800 usb2.0 crashes at 2.6.33.3 when the vdr is running and laptop goes to suspend/hibernate Davor -- 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

No video0, /dev/dvb/adapter0 present

2010-05-15 Thread Cliffe
Hello I would really appreciate some help. I am trying to setup my TV HD tuner card and have encountered some problems. In a nutshell: I have /dev/dvb/adapter0 containing: demux0 dvr0 frontend0 net0 but no /dev/video0 Some details: Card: Leadtek DTV2000 DS Dual Tuner Was not detected by

[PATCH 4/4] drivers/media/video: Eliminate use after free

2010-05-15 Thread Julia Lawall
From: Julia Lawall ju...@diku.dk The error value is saved in a new local variable err before freeing the containing structure. A simplified version of the semantic match that finds this problem is as follows: (http://coccinelle.lip6.fr/) // smpl @free@ expression E; position p; @@ kf...@p(E)

Re: No video0, /dev/dvb/adapter0 present

2010-05-15 Thread CityK
Cliffe, Your card does not support analogue, hence there will be no /dev/videoN node created. You are most likely attempting to use analogue tv viewing applications (i.e. xawtv v3.9x, tvtime, ...). Use applications for digital tv instead (i.e. kaffiene). If you go back over the How to

Re: Pinnacle PCTV DVB-T 70e

2010-05-15 Thread CityK
Hi Alex, this list is all but dead. Use the linux-media mailing list instead (I have cc'ed my reply to it).in the olden days, the video4linux list was the correct one for analog devices, and linux-dvb for (surprise, surprise) dvb related discussion. Nowadays, they have both been superseded by

[PATCH 0/4] V4L/DVB: Select correct frontends and tuners

2010-05-15 Thread Ben Hutchings
I found a few more drivers that don't select the same frontends and tuners that they reference. Ben. Ben Hutchings (4): V4L/DVB: dw2102: Select tda10023 frontend, not tda10021 V4L/DVB: budget: Select correct frontends V4L/DVB: dib0700: Select dib0090 frontend V4L/DVB: m920x: Select

[PATCH 1/4] V4L/DVB: dw2102: Select tda10023 frontend, not tda10021

2010-05-15 Thread Ben Hutchings
Update the Kconfig selections to match the code. Signed-off-by: Ben Hutchings b...@decadent.org.uk --- drivers/media/dvb/dvb-usb/Kconfig |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/media/dvb/dvb-usb/Kconfig b/drivers/media/dvb/dvb-usb/Kconfig index

[PATCH 2/4] V4L/DVB: budget: Select correct frontends

2010-05-15 Thread Ben Hutchings
Update the Kconfig selections to match the code. Signed-off-by: Ben Hutchings b...@decadent.org.uk --- drivers/media/dvb/ttpci/Kconfig |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/drivers/media/dvb/ttpci/Kconfig b/drivers/media/dvb/ttpci/Kconfig index

[PATCH 3/4] V4L/DVB: dib0700: Select dib0090 frontend

2010-05-15 Thread Ben Hutchings
Update the Kconfig selections to match the code. Signed-off-by: Ben Hutchings b...@decadent.org.uk --- drivers/media/dvb/dvb-usb/Kconfig |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/media/dvb/dvb-usb/Kconfig b/drivers/media/dvb/dvb-usb/Kconfig index

[PATCH 4/4] V4L/DVB: m920x: Select simple tuner

2010-05-15 Thread Ben Hutchings
Update the Kconfig selections to match the code. Signed-off-by: Ben Hutchings b...@decadent.org.uk --- drivers/media/dvb/dvb-usb/Kconfig |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/media/dvb/dvb-usb/Kconfig b/drivers/media/dvb/dvb-usb/Kconfig index

2.6.29 additional build errors

2010-05-15 Thread Samuel Rakitničan
Additional build errors found after disabling the non building modules on todays mercurial tree. Best regards, Samuel bash-3.1# uname -r 2.6.29.6-smp CC [M] /root/v4l-dvb/v4l/saa7134-input.o /root/v4l-dvb/v4l/saa7134-input.c: In function 'saa7134_set_i2c_ir':

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

2010-05-15 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:Sat May 15 19:00:18 CEST 2010 path:http://www.linuxtv.org/hg/v4l-dvb changeset: 14851:16ade09022d9 git master:

[PATCH 6/37] drivers/media/video/gspca: Use kmemdup

2010-05-15 Thread Julia Lawall
From: Julia Lawall ju...@diku.dk Use kmemdup when some other buffer is immediately copied into the allocated region. A simplified version of the semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // smpl @@ expression from,to,size,flag; statement S; @@ - to =

[PATCH 8/37] drivers/media/video/zoran: Use kmemdup

2010-05-15 Thread Julia Lawall
From: Julia Lawall ju...@diku.dk Use kmemdup when some other buffer is immediately copied into the allocated region. A simplified version of the semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // smpl @@ expression from,to,size,flag; statement S; @@ - to =

[PATCH 16/37] drivers/media/video/uvc: Use kmemdup

2010-05-15 Thread Julia Lawall
From: Julia Lawall ju...@diku.dk Use kmemdup when some other buffer is immediately copied into the allocated region. A simplified version of the semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // smpl @@ expression from,to,size,flag; statement S; @@ - to =

[PATCH 18/37] drivers/media/video/tlg2300: Use kmemdup

2010-05-15 Thread Julia Lawall
From: Julia Lawall ju...@diku.dk Use kmemdup when some other buffer is immediately copied into the allocated region. A simplified version of the semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // smpl @@ expression from,to,size,flag; statement S; @@ - to =

Afatech 9035 + NXP 18291 = GT-U7200

2010-05-15 Thread João Seabra
Good evening, I have a gigabyte gt-u7200 but since it's new i believe there aren't any drivers available On the webpage http://www.gigabyte.com.tw/Products/TVCard/Products_Spec.aspx?ClassValue=TV+CardProductID=2875ProductName=GT-U7200 says it has a NXP18291 tuner and the decoder chip is Afatech

Re: av7110 and budget_av are broken!

2010-05-15 Thread Oliver Endriss
On Wednesday 21 April 2010 11:44:16 Oliver Endriss wrote: On Wednesday 21 April 2010 08:37:39 Hans Verkuil wrote: Am 22.3.2010 20:34, schrieb e9hack: Am 20.3.2010 22:37, schrieb Hans Verkuil: On Saturday 20 March 2010 17:03:01 e9hack wrote: OK, I know that. But does the patch I mailed

Re: av7110 and budget_av are broken!

2010-05-15 Thread Douglas Schilling Landgraf
Hello Oliver, On Sat, May 15, 2010 at 8:06 PM, Oliver Endriss o.endr...@gmx.de wrote: On Wednesday 21 April 2010 11:44:16 Oliver Endriss wrote: On Wednesday 21 April 2010 08:37:39 Hans Verkuil wrote: Am 22.3.2010 20:34, schrieb e9hack: Am 20.3.2010 22:37, schrieb Hans Verkuil: On

Re: [PATCH] media/IR: Add missing include file to rc-map.c

2010-05-15 Thread Mauro Carvalho Chehab
Peter Hüwe wrote: From: Peter Huewe peterhu...@gmx.de This patch adds a missing include linux/delay.h to prevent build failures[1-5] Signed-off-by: Peter Huewe peterhu...@gmx.de --- Forwarded to linux-next mailing list - breakage still exists in linux-next of 20100514 - please apply

Re: av7110 and budget_av are broken!

2010-05-15 Thread hermann pitton
Am Samstag, den 15.05.2010, 22:33 -0300 schrieb Douglas Schilling Landgraf: Hello Oliver, On Sat, May 15, 2010 at 8:06 PM, Oliver Endriss o.endr...@gmx.de wrote: On Wednesday 21 April 2010 11:44:16 Oliver Endriss wrote: On Wednesday 21 April 2010 08:37:39 Hans Verkuil wrote: Am

Re: [RFC] Add 12 bit RAW Bayer Pattern pixel format support in V4L2

2010-05-15 Thread Mauro Carvalho Chehab
Zhang, Xiaolin wrote: Hi linux-media, Current V4l2 only support 8 bit and 10 bit RAW Bayer Patten pixel format and this is a RFC to add 12 bit RAW Bay pixel format support by 4 more pixel format definition in videodev2.h. The 12 bit RAW Bayer Pattern pixel format is not a platform

Re: av7110 and budget_av are broken!

2010-05-15 Thread Oliver Endriss
On Sunday 16 May 2010 03:53:48 hermann pitton wrote: Am Samstag, den 15.05.2010, 22:33 -0300 schrieb Douglas Schilling Landgraf: Hello Oliver, On Sat, May 15, 2010 at 8:06 PM, Oliver Endriss o.endr...@gmx.de wrote: On Wednesday 21 April 2010 11:44:16 Oliver Endriss wrote: On

Re: av7110 and budget_av are broken!

2010-05-15 Thread Douglas Schilling Landgraf
On Sat, May 15, 2010 at 8:06 PM, Oliver Endriss o.endr...@gmx.de wrote: On Wednesday 21 April 2010 11:44:16 Oliver Endriss wrote: On Wednesday 21 April 2010 08:37:39 Hans Verkuil wrote: Am 22.3.2010 20:34, schrieb e9hack: Am 20.3.2010 22:37, schrieb Hans Verkuil: On Saturday 20 March