Hello,
2010/8/11 Goga777 :
> Hi
>
> I can't compile current v4l-dvb with new 2.6.35 kernel
>
> arvdr:/usr/src/v4l-dvb# make
> make -C /usr/src/v4l-dvb/v4l
> make[1]: Entering directory `/usr/src/v4l-dvb/v4l'
> creating symbolic links...
> make -C firmware prep
> make[2]: Entering directory `/usr/s
On Sun, 1 Aug 2010, Janusz Krzysztofik wrote:
> Friday 30 July 2010 20:49:05 Janusz Krzysztofik napisaÅ(a):
> > Friday 30 July 2010 13:07:42 Guennadi Liakhovetski napisaÅ(a):
> > > On Sun, 18 Jul 2010, Janusz Krzysztofik wrote:
> > > > This is a V4L2 driver for TI OMAP1 SoC camera interface.
> >
Multiple user-space application instances can open the same video device, but
it only makes sense for one of them to manage the videobuffer queue and set
video format of the device. Restrict soc-camera respectively.
Signed-off-by: Guennadi Liakhovetski
---
Also compile tested only - I'm away fro
Only the "streamer" process has to initialise videobufs.
Signed-off-by: Guennadi Liakhovetski
---
Janusz, this and the following patch can be useful, if we decide to
implement dynamic switching between videobuf implementations. Only
compile-tested...
drivers/media/video/soc_camera.c |4 +
On Thu, 12 Aug 2010, Christopher Friedt wrote:
> Fixed broken compile of drivers/media/video/v4l2-ctrls.c.
> It failed due to missing #include , and errored-out with
> "implicit declaration of function kzalloc, kmalloc, ..."
>
> Signed-off-by: Christopher Friedt
> ---
> drivers/media/video/v4
"sd" and "err" are too common names to be used in macros for local variables.
Prefix them with an underscore to avoid name clashing.
Signed-off-by: Guennadi Liakhovetski
---
v2:
as suggested by Mauro, also patched v4l2_device_call_all and
v4l2_device_call_until_err, as well as ivtv and cx18 sp
- Dan Carpenter wrote:
> The original code dereferenced ir->raw after freeing it and setting it
> to NULL.
>
> Signed-off-by: Dan Carpenter
Acked-by: Jarod Wilson
--
Jarod Wilson
ja...@redhat.com
--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a
Fixed broken compile of drivers/media/video/v4l2-ctrls.c.
It failed due to missing #include , and errored-out with
"implicit declaration of function kzalloc, kmalloc, ..."
Signed-off-by: Christopher Friedt
---
drivers/media/video/v4l2-ctrls.c |1 +
1 files changed, 1 insertions(+), 0 delet
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 Aug 12 19:00:22 CEST 2010
path:http://www.linuxtv.org/hg/v4l-dvb
changeset: 15029:2dd0872c7c1d
git master:
Linus,
Please pull from:
ssh://master.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
v4l_for_linus
For 3 build fixes.
Cheers,
Mauro.
The following changes since commit ad41a1e0cab07c5125456e8d38e5b1ab148d04aa:
Merge branch 'io_remap_pfn_range' of git://www.jni.nu/cris (2010-08-
Current git has broken v4l2-ctrls compilation - kzalloc et al are
missing prototypes. Fix it by including linux/slab.h that contains the
definitions.
Signed-off-by: Meelis Roos
diff --git a/drivers/media/video/v4l2-ctrls.c b/drivers/media/video/v4l2-ctrls.c
index 84c1a53..ea8d32c 100644
--- a/
On Thu, 2010-08-12 at 18:19 +0200, Dan Carpenter wrote:
> On Thu, Aug 12, 2010 at 05:35:04PM +0300, Maxim Levitsky wrote:
> > On Thu, 2010-08-12 at 09:46 +0200, Dan Carpenter wrote:
> > > There were a couple issues here. If the allocation failed for "dev"
> > > then it would lead to a NULL deref
Hi.
We are trying to use the libdvbsec-api from the dvb-apps package
(/dvb_apps/lib/libdvbsec) to build our own DiSEqC positioner control.
It's going to implement a kind of USALS/GotoX/GotoXX/DiSEqC1.3, whatever
you want to call it (there's no hardware receiver provided atm).
But at the moment th
On Thu, Aug 12, 2010 at 05:35:04PM +0300, Maxim Levitsky wrote:
> On Thu, 2010-08-12 at 09:46 +0200, Dan Carpenter wrote:
> > There were a couple issues here. If the allocation failed for "dev"
> > then it would lead to a NULL dereference. If request_irq() or
> > request_region() failed it would
On Thu, 2010-08-12 at 09:46 +0200, Dan Carpenter wrote:
> There were a couple issues here. If the allocation failed for "dev"
> then it would lead to a NULL dereference. If request_irq() or
> request_region() failed it would release the irq and the region even
> though they were not successfully
Hello.
On Thu, 2010-08-12 at 14:10 +0200, ext pramodh ag wrote:
> Matti,
>
> > +/**
> > + * wl1273_fm_set_tx_power() -Set the transmission power value.
> > + * @core:A pointer to the device struct.
> > + * @power:The new power value.
> > + */
> > +static int wl1273_fm_
Matti,
> +/**
> + * wl1273_fm_set_tx_power() - Set the transmission power value.
> + * @core: A pointer to the device struct.
> + * @power: The new power value.
> + */
> +static int wl1273_fm_set_tx_power(struct wl1273_core *core, u16 power)
> +{
> + int r;
> +
> + i
Hello Alexey
On Wed, 2010-08-11 at 10:06 +0200, ext Alexey Klimov wrote:
> > +
> > + radio = kzalloc(sizeof(*radio), GFP_KERNEL);
> > + if (!radio)
> > + return -ENOMEM;
> > +
> > + radio->write_buf = kmalloc(256, GFP_KERNEL);
> > + if (!radio->write_buf)
> >
On Thu, 2010-08-12 at 12:29 +0200, ext Hans Verkuil wrote:
> > On Wed, 2010-08-11 at 15:16 +0200, ext Mauro Carvalho Chehab wrote:
> >> Em 11-08-2010 08:44, Matti J. Aaltonen escreveu:
> >> > Hi again.
> >> >
> >> > On Wed, 2010-08-11 at 14:34 +0300, Matti J. Aaltonen wrote:
> >> >> Hello.
> >> >>
> On Wed, 2010-08-11 at 15:16 +0200, ext Mauro Carvalho Chehab wrote:
>> Em 11-08-2010 08:44, Matti J. Aaltonen escreveu:
>> > Hi again.
>> >
>> > On Wed, 2010-08-11 at 14:34 +0300, Matti J. Aaltonen wrote:
>> >> Hello.
>> >>
>> >> On Wed, 2010-08-11 at 12:56 +0200, ext Hans Verkuil wrote:
>>
On Wed, 2010-08-11 at 15:16 +0200, ext Mauro Carvalho Chehab wrote:
> Em 11-08-2010 08:44, Matti J. Aaltonen escreveu:
> > Hi again.
> >
> > On Wed, 2010-08-11 at 14:34 +0300, Matti J. Aaltonen wrote:
> >> Hello.
> >>
> >> On Wed, 2010-08-11 at 12:56 +0200, ext Hans Verkuil wrote:
> Hi.
> >>>
hi
with 2.6.35 kernel and current v4l-dvb I have other errors as described here is
http://www.kernellabs.com/blog/?p=1397
CC [M] /home/fabio/src/v4l-dvb-drxd/v4l/dvb_filter.o
CC [M] /home/fabio/src/v4l-dvb-drxd/v4l/dvb_ca_en50221.o
CC [M] /home/fabio/src/v4l-dvb-drxd/v4l/dvb_frontend.o
CC [M] /h
The original code dereferenced ir->raw after freeing it and setting it
to NULL.
Signed-off-by: Dan Carpenter
diff --git a/drivers/media/IR/ir-raw-event.c b/drivers/media/IR/ir-raw-event.c
index 43094e7..8e0e1b1 100644
--- a/drivers/media/IR/ir-raw-event.c
+++ b/drivers/media/IR/ir-raw-event.c
@@
There were a couple issues here. If the allocation failed for "dev"
then it would lead to a NULL dereference. If request_irq() or
request_region() failed it would release the irq and the region even
though they were not successfully aquired.
Signed-off-by: Dan Carpenter
diff --git a/drivers/me
If we return directly here then we miss out on some mutex_unlock()s
Signed-off-by: Dan Carpenter
diff --git a/drivers/media/video/s5p-fimc/fimc-core.c
b/drivers/media/video/s5p-fimc/fimc-core.c
index b151c7b..1beb226 100644
--- a/drivers/media/video/s5p-fimc/fimc-core.c
+++ b/drivers/media/vide
25 matches
Mail list logo