On Tue, May 11, 2010 at 08:42:14PM +0200, Peter H?we wrote:
> Am Mittwoch 05 Mai 2010 17:20:21 schrieb Peter H?we:
> > From: Peter Huewe
> >
> > This patch adds a missing include linux/delay.h to prevent
> > build failures[1-5]
> >
> > Signed-off-by: Peter Huewe
> > ---
> Any updates on this pa
On Thu, 13 May 2010 17:58:49 +0200
Frank Schaefer wrote:
> I'm not sure if I'm hitting a bug or this is the expected driver
> behavior: With a Microsoft LifeCam VX-3000 (045e:00f5) and
> gspca-sonixj, ioctl VIDIOC_DQBUF intermittently blocks for exactly 3
> seconds and then returns EIO.
> I notic
Hello Mauro,
Please pull from http://linuxtv.org/hg/~dougsland/v4l-dvb for
the following:
- ir-core-priv.h: error: field 'rx_work' has incomplete type
Thanks
Douglas
--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majord...@vger.kernel.
On Thu, 13 May 2010 22:27:25 -0300
Mauro Carvalho Chehab wrote:
> FUJITA Tomonori wrote:
> > On Thu, 13 May 2010 15:25:24 -0700
> > Pete Eberlein wrote:
> >
> >> Thanks, Tomonori.
> >>
> >> Does this need to get submitted to the linux-media tree as well, or will
> >> this patch get pulled autom
FUJITA Tomonori wrote:
> On Thu, 13 May 2010 15:25:24 -0700
> Pete Eberlein wrote:
>
>> Thanks, Tomonori.
>>
>> Does this need to get submitted to the linux-media tree as well, or will
>> this patch get pulled automatically from Linus' tree?
>
> I think that patches for staging drivers are merge
El Jueves, 13 de Mayo de 2010, Antti Palosaari escribió:
> Terve!
>
> On 05/02/2010 06:39 PM, Jose Alberto Reguero wrote:
> > When I have a af9015 DVB-T stick plugged I can not recover from pc
> > suspend. I must unplug the stick to suspend work. Even if I remove the
> > modules I cannot recover f
On Thu, 13 May 2010 15:25:24 -0700
Pete Eberlein wrote:
> Thanks, Tomonori.
>
> Does this need to get submitted to the linux-media tree as well, or will
> this patch get pulled automatically from Linus' tree?
I think that patches for staging drivers are merged via Greg's staging
tree.
> Thank
Thanks, Tomonori.
Does this need to get submitted to the linux-media tree as well, or will
this patch get pulled automatically from Linus' tree?
Thanks,
Pete Eberlein
On Thu, 2010-05-13 at 12:45 +0900, FUJITA Tomonori wrote:
> dma_sync_single() is deprecated and will be removed soon.
>
> No fun
Terve Honza,
On 04/28/2010 01:59 AM, Honza Stodola wrote:
I'm trying to use AVerTV Volar HD PRO (A835) in Linux, but it seems the
USB receiver is not supported by current kernel (2.6.34-rc5). Sending
some logs and configuration, let me know if you need some more. Any help
is appreciated.
lsusb
Terve Marc,
On 05/13/2010 12:14 AM, marc balta wrote:
* when this happens (stuck device) only a reboot or unplugging the stick
helps. Reloading all dvb modules helps nothing. So the problem might be
the firmware?
Problem : device hangs sometimes. It is known problem and hard to fix
because it
Terve Hans,
On 03/14/2012 05:53 PM, Hans van den Bogert wrote:
The anysee driver works correctly from cold boot and reinsertion of the device,
however, after a suspend resume cycle (S3), the device suddenly is initated as
dvb-t as where it was dvb-c before. Yes this is a combo device, so dvb
Terve!
On 05/05/2010 05:00 PM, Simon Kenyon wrote:
as an aside: i bought two of these on ebay and if antti wants one so
that he can support it then just drop me an email with a postal address
and i'll send it
Hou, I have been out of this project some time. But now I have time,
maybe whole sum
Terve!
On 05/02/2010 06:39 PM, Jose Alberto Reguero wrote:
When I have a af9015 DVB-T stick plugged I can not recover from pc suspend. I
must unplug the stick to suspend work. Even if I remove the modules I cannot
recover from suspend.
Any idea why this happen?
Did you asked this 7 months ago
Terve!
And sorry I have been "out of the office" for few months... Now I am
back and I think I have again time for this project...
On 03/21/2010 01:14 PM, matthieu castet wrote:
the af9015 eeprom parsing accept 0x38 as 2nd demodulator. But this is
impossible because the
first one is already ha
Hi,
On Thu, May 13, 2010 at 1:49 AM, Mauro Carvalho Chehab
wrote:
> hermann pitton wrote:
>> Am Mittwoch, den 12.05.2010, 15:59 -0300 schrieb Mauro Carvalho Chehab:
>>> Sander Pientka wrote:
Hi Hermann,
I am going to revive this old thread, I completely forgot about it and
I s
В сообщении от 10 мая 2010 14:44:08 автор Pascal Terjan написал:
> Le dimanche 09 mai 2010 à 21:34 +0300, Igor M. Liplianin a écrit :
> > On 6 мая 2010 11:46:17 Pascal Terjan wrote:
> > > Hi,
> > >
> > > I was adding support for a non working version of DVBWorld HD 2104
> > >
> > > It is listed o
From: Julia Lawall
Use kzalloc rather than the combination of kmalloc and memset.
The semantic patch that makes this change is as follows:
(http://coccinelle.lip6.fr/)
//
@@
expression x,size,flags;
statement S;
@@
-x = kmalloc(size,flags);
+x = kzalloc(size,flags);
if (x == NULL) S
-memset(
On Thu, May 13, 2010 at 3:43 PM, Mauro Carvalho Chehab
wrote:
> Fix backport tree compilations with kernels older than 2.6.33.
>
> Compile tested only, with 2.6.32.4 kernel.
>
> Signed-off-by: Mauro Carvalho Chehab
>
> diff --git a/linux/drivers/media/IR/ir-core-priv.h
> b/linux/drivers/media/IR
Mauro Carvalho Chehab wrote:
> hermann pitton wrote:
>
>>> My view is that the backport tree is very useful to have a broader number
>>> of people testing V4L/DVB code, as it can be applied against legacy kernels.
>>> Of course, for this to work, people should quickly fix broken backports
>>> (tha
Fix backport tree compilations with kernels older than 2.6.33.
Compile tested only, with 2.6.32.4 kernel.
Signed-off-by: Mauro Carvalho Chehab
diff --git a/linux/drivers/media/IR/ir-core-priv.h
b/linux/drivers/media/IR/ir-core-priv.h
--- a/linux/drivers/media/IR/ir-core-priv.h
+++ b/linux/driv
hermann pitton wrote:
>> My view is that the backport tree is very useful to have a broader number
>> of people testing V4L/DVB code, as it can be applied against legacy kernels.
>> Of course, for this to work, people should quickly fix broken backports
>> (that means that not only Douglas should
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:Thu May 13 19:00:21 CEST 2010
path:http://www.linuxtv.org/hg/v4l-dvb
changeset: 14849:9b63860cd18a
git master:
Hi,
Am Donnerstag, den 13.05.2010, 09:32 -0300 schrieb Mauro Carvalho
Chehab:
> hermann pitton wrote:
> > Am Donnerstag, den 13.05.2010, 01:49 -0300 schrieb Mauro Carvalho
> > Chehab:
> >> hermann pitton wrote:
> >>> Am Mittwoch, den 12.05.2010, 15:59 -0300 schrieb Mauro Carvalho Chehab:
> Sa
Hi,
I'm not sure if I'm hitting a bug or this is the expected driver behavior:
With a Microsoft LifeCam VX-3000 (045e:00f5) and gspca-sonixj, ioctl
VIDIOC_DQBUF intermittently blocks for exactly 3 seconds and then
returns EIO.
I noticed that it strongly depends on the captured scenery: when it's
c
hermann pitton wrote:
> Am Donnerstag, den 13.05.2010, 01:49 -0300 schrieb Mauro Carvalho
> Chehab:
>> hermann pitton wrote:
>>> Am Mittwoch, den 12.05.2010, 15:59 -0300 schrieb Mauro Carvalho Chehab:
Sander Pientka wrote:
> Hi Hermann,
>
> I am going to revive this old thread, I c
Am Donnerstag, den 13.05.2010, 01:49 -0300 schrieb Mauro Carvalho
Chehab:
> hermann pitton wrote:
> > Am Mittwoch, den 12.05.2010, 15:59 -0300 schrieb Mauro Carvalho Chehab:
> >> Sander Pientka wrote:
> >>> Hi Hermann,
> >>>
> >>> I am going to revive this old thread, I completely forgot about it
26 matches
Mail list logo