On Saturday 06 June 2009 22:40:21 Eduardo Valentin wrote:
> Hi Hans,
>
> On Sat, Jun 6, 2009 at 8:09 PM, Hans Verkuil wrote:
> > On Saturday 06 June 2009 14:49:46 Hans Verkuil wrote:
> > > On Saturday 06 June 2009 13:59:19 Hans Verkuil wrote:
> > > > On Friday 29 May 2009 09:33:21 Eduardo Valentin
On Sunday 07 June 2009 00:20:26 Jon Smirl wrote:
> On Sat, Jun 6, 2009 at 9:00 AM, Hans Verkuil wrote:
> > Hi all,
> >
> > For video4linux we sometimes need to probe for a single i2c address.
> > Normally you would do it like this:
>
> Why does video4linux need to probe to find i2c devices? Can't t
On Sun, 2009-06-07 at 09:16 +0800, Figo.zhang wrote:
> On Wed, 2009-06-03 at 10:01 +0800, Figo.zhang wrote:
> > add poiter check for videobuf_queue_core_init().
> >
> > any guys who write a v4l driver, pass a NULL pointer or a non-inintial
> > pointer to the first parameter such as videobuf_queue_
Hi,
Am Samstag, den 06.06.2009, 18:20 -0400 schrieb Jon Smirl:
> On Sat, Jun 6, 2009 at 9:00 AM, Hans Verkuil wrote:
> > Hi all,
> >
> > For video4linux we sometimes need to probe for a single i2c address.
> > Normally you would do it like this:
>
> Why does video4linux need to probe to find i2c
On Sat, Jun 6, 2009 at 9:00 AM, Hans Verkuil wrote:
> Hi all,
>
> For video4linux we sometimes need to probe for a single i2c address.
> Normally you would do it like this:
Why does video4linux need to probe to find i2c devices? Can't the
address be determined by knowing the PCI ID of the board?
Em Sat, 6 Jun 2009 15:00:48 +0200
Hans Verkuil escreveu:
> Hi all,
>
> For video4linux we sometimes need to probe for a single i2c address.
> Normally you would do it like this:
>
> static const unsigned short addrs[] = {
> addr, I2C_CLIENT_END
> };
>
> client = i2c_new_probed_device(ad
Am Freitag, 5. Juni 2009 00:43:04 schrieb Alexey Klimov:
> Is there any ideas about different behaviour of device on 32- and
> 64-bit platforms with the same usb bulk messages?
> Any input is welcome.
Are you running a 32 bit userland? If so, ioctls could be critical.
If not, the driver may not be
Hi Hans,
On Sat, Jun 6, 2009 at 8:09 PM, Hans Verkuil wrote:
>
> On Saturday 06 June 2009 14:49:46 Hans Verkuil wrote:
> > On Saturday 06 June 2009 13:59:19 Hans Verkuil wrote:
> > > On Friday 29 May 2009 09:33:21 Eduardo Valentin wrote:
> > > > # HG changeset patch
> > > > # User Eduardo Valenti
Igor M. Liplianin wrote:
On 5 June 2009 21:41:46 Simon Kenyon wrote:
Simon Kenyon wrote:
Simon Kenyon wrote:
the picture seems to be breaking up badly
will revert to my version and see if that fixes it
[sorry for the delay. i was away on business]
i've checked and your original code, modifie
Hello Mauro,
Please pull from http://www.linuxtv.org/hg/~dougsland/em28xx for
the following:
- em28xx: Add Kworld 315 entry
- em28xx: set up tda9887_conf in em28xx_card_setup()
Thanks,
Douglas
--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a mes
Am Samstag, 6. Juni 2009 03:59:41 schrieb Andy Walls:
> Hi,
>
> This is version 2 of the patch that:
>
> 1. adds explicit support for the FQ1216LME MK3
>
> 2. points the tveeprom module to the FQ1216LME MK3 entry for EEPROMs
> claiming FQ1216LME MK3 and MK5.
>
> 3. refactors some code in simple
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 Jun 6 19:00:06 CEST 2009
path:http://www.linuxtv.org/hg/v4l-dvb
changeset: 11929:5ed2a853b692
gcc version: gcc
On Sat, 6 Jun 2009, Andy Walls wrote:
> +Alternatively, you can create the unsigned short array dynamically:
> +
> +struct v4l2_subdev *sd = v4l2_i2c_subdev(v4l2_dev, adapter,
> +"module_foo", "chipid", 0, V4L2_I2C_ADDRS(0x10, 0x12));
>
> Strictly speaking, that's not "dynamically" in t
On Sat, 6 Jun 2009, Hans Verkuil wrote:
> For video4linux we sometimes need to probe for a single i2c address.
> Normally you would do it like this:
>
> static const unsigned short addrs[] = {
> addr, I2C_CLIENT_END
> };
>
> client = i2c_new_probed_device(adapter, &info, addrs);
>
> This is a
On Sat, 6 Jun 2009, Hans Verkuil wrote:
> On Saturday 06 June 2009 13:59:19 Hans Verkuil wrote:
> > I propose to change the API as follows:
> >
> > #define V4L2_I2C_ADDRS(addr, addrs...) \
> > ((const unsigned short []){ addr, ## addrs, I2C_CLIENT_END })
> >
> > struct v4l2_subdev *v4l2_i2c_new
On Saturday 06 June 2009 14:49:46 Hans Verkuil wrote:
> On Saturday 06 June 2009 13:59:19 Hans Verkuil wrote:
> > On Friday 29 May 2009 09:33:21 Eduardo Valentin wrote:
> > > # HG changeset patch
> > > # User Eduardo Valentin
> > > # Date 1243414605 -10800
> > > # Branch export
> > > # Node ID 4fb
On Saturday 06 June 2009 17:19:08 Andy Walls wrote:
> On Sat, 2009-06-06 at 14:49 +0200, Hans Verkuil wrote:
> > > I propose to change the API as follows:
> > >
> > > #define V4L2_I2C_ADDRS(addr, addrs...) \
> > > ((const unsigned short []){ addr, ## addrs, I2C_CLIENT_END })
> > >
> > > Comments?
On Sat, 2009-06-06 at 14:49 +0200, Hans Verkuil wrote:
> > I propose to change the API as follows:
> >
> > #define V4L2_I2C_ADDRS(addr, addrs...) \
> > ((const unsigned short []){ addr, ## addrs, I2C_CLIENT_END })
> > Comments? If we decide to go this way, then I need to know soon so that I
>
Hi all,
For video4linux we sometimes need to probe for a single i2c address.
Normally you would do it like this:
static const unsigned short addrs[] = {
addr, I2C_CLIENT_END
};
client = i2c_new_probed_device(adapter, &info, addrs);
This is a bit awkward and I came up with this macro:
On Saturday 06 June 2009 13:59:19 Hans Verkuil wrote:
> On Friday 29 May 2009 09:33:21 Eduardo Valentin wrote:
> > # HG changeset patch
> > # User Eduardo Valentin
> > # Date 1243414605 -10800
> > # Branch export
> > # Node ID 4fb354645426f8b187c2c90cd8528b2518461005
> > # Parent 142fd6020df3b4d5
On Friday 29 May 2009 09:33:21 Eduardo Valentin wrote:
> # HG changeset patch
> # User Eduardo Valentin
> # Date 1243414605 -10800
> # Branch export
> # Node ID 4fb354645426f8b187c2c90cd8528b2518461005
> # Parent 142fd6020df3b4d543068155e49a2618140efa49
> Device drivers of v4l2_subdev devices may
Hi Mauro
On Sat, 6 Jun 2009, Mauro Carvalho Chehab wrote:
> Hi Guennadi,
>
> Em Wed, 3 Jun 2009 20:26:36 +0200 (CEST)
> Guennadi Liakhovetski escreveu:
>
> > On Mon, 1 Jun 2009, Robert Jarzmik wrote:
> >
> > > Trent Piepho writes:
> > >
> > > > Mauro,
> > > >
> > > > Please pull from http:/
Hi Guennadi,
Em Wed, 3 Jun 2009 20:26:36 +0200 (CEST)
Guennadi Liakhovetski escreveu:
> On Mon, 1 Jun 2009, Robert Jarzmik wrote:
>
> > Trent Piepho writes:
> >
> > > Mauro,
> > >
> > > Please pull from http://linuxtv.org/hg/~tap/v4l-dvb
> > >
> > > This series adds a function for bounding an
vfree() does it's own NULL checking,so no need for check before
calling it.
Signed-off-by: Figo.zhang
---
drivers/media/video/usbvision/usbvision-core.c | 14 ++
1 files changed, 6 insertions(+), 8 deletions(-)
diff --git a/drivers/media/video/usbvision/usbvision-core.c
b/driver
vfree() does it's own NULL checking, no need for explicit check before
calling it.
Signed-off-by: Figo.zhang
---
drivers/media/video/zr364xx.c |6 --
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/drivers/media/video/zr364xx.c b/drivers/media/video/zr364xx.c
index ac169c
On 5 June 2009 21:41:46 Simon Kenyon wrote:
> Simon Kenyon wrote:
> > Simon Kenyon wrote:
> >> the picture seems to be breaking up badly
> >> will revert to my version and see if that fixes it
> >
> > [sorry for the delay. i was away on business]
> >
> > i've checked and your original code, modifie
Hello, Richard
i have only two small suggestions.
On Fri, Jun 5, 2009 at 5:40 PM, Richard
Röjfors wrote:
> V4L2 video capture driver for the logiwin IP on the Timberdale FPGA.
>
> The driver uses the Timberdale DMA engine
>
> Signed-off-by: Richard Röjfors
> ---
> Index: linux-2.6.30-rc7/drivers/
it is better return -ENOMEM than -EIO
Signed-off-by: Figo.zhang
---
drivers/media/video/videobuf-dma-sg.c |2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/media/video/videobuf-dma-sg.c
b/drivers/media/video/videobuf-dma-sg.c
index da1790e..03c8b04 100644
--- a/
28 matches
Mail list logo