[PATCH] dvb/dib8000: fix build warning

2010-04-04 Thread Wolfram Sang
In file included from drivers/media/dvb/dvb-usb/dib0700_devices.c:14: drivers/media/dvb/frontends/dib8000.h: In function 'dib8000_get_adc_power': drivers/media/dvb/frontends/dib8000.h:112: warning: no return statement in function returning non-void Fixed by adding a return to the dummy func

Re: RFC: new V4L control framework

2010-04-04 Thread Andy Walls
On Sun, 2010-04-04 at 17:41 +0200, Hans Verkuil wrote: > Hi all, > > The support in drivers for the V4L2 control API is currently very chaotic. > Few if any drivers support the API correctly. Especially the support for the > new extended controls is very much hit and miss. > > Combine that with t

Re: [PATCH 2/2] V4L/DVB: Use custom I2C probing function mechanism

2010-04-04 Thread Andy Walls
On Sun, 2010-04-04 at 16:14 +0200, Jean Delvare wrote: > Now that i2c-core offers the possibility to provide custom probing > function for I2C devices, let's make use of it. > > Signed-off-by: Jean Delvare > --- > I wasn't too sure where to put the custom probe function: in each driver, > in the

RE: help: Leadtek DTV2000 DS

2010-04-04 Thread Gavin Ramm
Finally got back to my mythtv and found that the card isn't working 100% what I've noticed. 1) Installed card run a LSMOD (shown below) did a scandvb -a 0 /usr/share/dvb-apps/dvb-t/au-Bendigo and scandvb -a 1 /usr/share/dvb-apps/dvb-t/au-Bendigo. The cards found all the channels and works. ls

Re: [PATCH 04/15] V4L/DVB: ir-core: Add logic to decode IR protocols at the IR core

2010-04-04 Thread Andy Walls
On Sun, 2010-04-04 at 15:00 -0300, Mauro Carvalho Chehab wrote: > Andy Walls wrote: > > And when you have time: > > A way to generate random IR > > glitches is with bright sunlight reflecting off of a basin of water > > that's surface is being disturbed to make waves. > > I have a better way:

Re: s2-liplianin, mantis: sysfs: cannot create duplicate filename '/devices/virtual/irrcv'

2010-04-04 Thread Manu Abraham
On Mon, Apr 5, 2010 at 1:55 AM, MartinG wrote: > Thanks, I've pulled the linuxtv tree, and it compiled, installed and > seems to work just fine. No more "mantis_ack_wait (0): Slave RACK Fail > !" I hope ;). That error is from the older version of my driver. You don't find that error in the updat

Re: s2-liplianin, mantis: sysfs: cannot create duplicate filename '/devices/virtual/irrcv'

2010-04-04 Thread MartinG
2010/3/9 Igor M. Liplianin : > MartinG, I'm already planning to replace mantis related part with linuxtv one, > so please use http://linuxtv.org/hg/v4l-dvb. > But not get wrong, this tree isn't panacea, your reports are welcome. Thanks, I've pulled the linuxtv tree, and it compiled, installed and

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

2010-04-04 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 Apr 4 19:00:12 CEST 2010 path:http://www.linuxtv.org/hg/v4l-dvb changeset: 14536:a539e5b68945 git master:

Re: webcam problem after suspend/hibernate

2010-04-04 Thread Pavel Machek
Hi! > > If unload/reload of uvcvideo helps, it is most likely problem in that. > > > > If unload/reload of ehci_hcd is needed, it is most likely ehci problem. > > My testing shows that: > > 1. If I remove uvcvideo BEFORE suspend and reinsert it after resume, > it works. However, I cannot

Re: webcam problem after suspend/hibernate

2010-04-04 Thread Philippe Troin
Pavel Machek writes: > Hi! > > > > > Do you mean the dmesg output ? > > > > A full dmesg is included in this address : > > > > http://pastebin.com/8XU619Uk > > > > Not in all suspend/hibernate the problem comes, only in some of them > > > > and this included dmesg output is just after a non work

update gspca driver in linux source tree

2010-04-04 Thread rath
Hi, I have a 2.6.29 kernel for my embedded ARM system. I need an newer gspca driver, so I downloaded the gspca driver from http://linuxtv.org/hg/~hgoede/gspca/ an copied the content of the linux folder to my 2.6.29 source tree and tried to cross compile it. But I get the error "drivers/media/

Re: [PATCH 04/15] V4L/DVB: ir-core: Add logic to decode IR protocols at the IR core

2010-04-04 Thread Mauro Carvalho Chehab
Andy Walls wrote: > On Sat, 2010-04-03 at 19:56 -0300, Mauro Carvalho Chehab wrote: >> Andy Walls wrote: >>> On Fri, 2010-04-02 at 22:32 -0300, Mauro Carvalho Chehab wrote: Andy Walls wrote: >>> > I haven't taken a very hard look at this since I'm very busy this month. > > It loo

Re: DVB-S2 Multistream (?)

2010-04-04 Thread Matteo
After Mediaset, another broadcaster in Italy uses DVB-S2 Multistream, this time on Atlantic Bird 1 (12.5°W), frequency 12718H. More info: http://www.newtec.eu/uploads/media/NEWTEC_press_release_Multistream_Telecom-Italia-Media-Broadcasting_TIMB___2010-03-15_01.pdf http://www.newtec.eu/fileadmin/m

RFC: new V4L control framework

2010-04-04 Thread Hans Verkuil
Hi all, The support in drivers for the V4L2 control API is currently very chaotic. Few if any drivers support the API correctly. Especially the support for the new extended controls is very much hit and miss. Combine that with the requirements for the upcoming embedded devices that will want to u

[PATCH 2/2] V4L/DVB: Use custom I2C probing function mechanism

2010-04-04 Thread Jean Delvare
Now that i2c-core offers the possibility to provide custom probing function for I2C devices, let's make use of it. Signed-off-by: Jean Delvare --- I wasn't too sure where to put the custom probe function: in each driver, in the ir-common module or in the v4l2-common module. I went for the second

[PATCH 1/2] i2c: Add support for custom probe function

2010-04-04 Thread Jean Delvare
The probe method used by i2c_new_probed_device() may not be suitable for all cases. Let the caller provide its own, optional probe function. Signed-off-by: Jean Delvare --- Documentation/i2c/instantiating-devices |2 drivers/i2c/i2c-core.c| 65 ---

Re: webcam problem after suspend/hibernate

2010-04-04 Thread Pavel Machek
Hi! > > > Do you mean the dmesg output ? > > > A full dmesg is included in this address : > > > http://pastebin.com/8XU619Uk > > > Not in all suspend/hibernate the problem comes, only in some of them > > > and this included dmesg output is just after a non working case of > > > webcam fault. > > >

Re: [PATCH 04/15] V4L/DVB: ir-core: Add logic to decode IR protocols at the IR core

2010-04-04 Thread Andy Walls
On Sat, 2010-04-03 at 19:56 -0300, Mauro Carvalho Chehab wrote: > Andy Walls wrote: > > On Fri, 2010-04-02 at 22:32 -0300, Mauro Carvalho Chehab wrote: > >> Andy Walls wrote: > > > >>> I haven't taken a very hard look at this since I'm very busy this month. > >>> > >>> It looks OK so far. > >> T