[PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2010-02-18 Thread Jean-Francois Moine
Hi Mauro,

Please pull from http://linuxtv.org/hg/~jfrancois/v4l-dvb

for the following 3 changesets:

01/03: gspca - sonixj: Add vertical flip control for sensor hv7131r.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=cdce9bf1b2e0

02/03: gspca - sonixj: Set the vertical flip at capture start for all sensors.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=e093382280d5

03/03: gspca - main: Fix a compile error when CONFIG_INPUT is not set.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=d8fafa7d88dc


 gspca.c  |6 ++
 sonixj.c |   30 +++---
 2 files changed, 25 insertions(+), 11 deletions(-)

Thanks.

-- 
Ken ar c'hentañ | ** Breizh ha Linux atav! **
Jef |   http://moinejf.free.fr/
--
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  http://vger.kernel.org/majordomo-info.html


Re: [PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2010-02-03 Thread Mauro Carvalho Chehab
Hans de Goede wrote:
 Hi,
 
 On 02/01/2010 07:36 PM, Mauro Carvalho Chehab wrote:
 Jean-Francois Moine wrote:
 Hi Douglas,

 I believe it is you to whom the pull requests must be addressed.

 In fact, the current workflow is different: I'll handle all patches
 (except
 for those that are pure backport patches or to some files that are
 present
 only at v4l-dvb -hg tree). After having them added to my -git tree,
 then Douglas
 will backport them to -hg.

 
 Ah, ok, and do you still accept pull requests from hg trees. As much I
 think
 moving over to git is a good thing (I use it everywhere else), I must
 say the
 hg tree's stand alone compile behavior (so without having to rebuild
 your entire
 kernel), is very very convenient.

Well, the kernel building system has some very fancy things like:

make drivers/media/gspca/

(to compile all gspca drivers but don't generate the .ko)

 make drivers/media/video/gspca/gspca_sonixj.ko

To generate the gspca_sonixj.ko module

This is a way faster than what the -hg building system have.


-- 

Cheers,
Mauro
--
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  http://vger.kernel.org/majordomo-info.html


Re: [PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2010-02-01 Thread Hans de Goede

Hi,

On 02/01/2010 07:36 PM, Mauro Carvalho Chehab wrote:

Jean-Francois Moine wrote:

Hi Douglas,

I believe it is you to whom the pull requests must be addressed.


In fact, the current workflow is different: I'll handle all patches (except
for those that are pure backport patches or to some files that are present
only at v4l-dvb -hg tree). After having them added to my -git tree, then Douglas
will backport them to -hg.



Ah, ok, and do you still accept pull requests from hg trees. As much I think
moving over to git is a good thing (I use it everywhere else), I must say the
hg tree's stand alone compile behavior (so without having to rebuild your entire
kernel), is very very convenient.

Regards,

Hans
--
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  http://vger.kernel.org/majordomo-info.html


[PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2010-01-30 Thread Jean-Francois Moine
Hi Douglas,

I believe it is you to whom the pull requests must be addressed.

Please pull from http://linuxtv.org/hg/~jfrancois/v4l-dvb

for the following 5 changesets:

01/05: gspca - main: Add input support for interrupt endpoints.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=f77ba6670e1b

02/05: gspca - pac7302: Add support for camera button.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=24ab9e77691d

03/05: gspca - pac7302: Change latin1 text to utf-8.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=bc1c509467f7

04/05: gspca - t613: Support for LT168G sensor.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=5ef754bf809f

05/05: gspca - main: Change version to 2.9.0.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=dfa82cf98a85


 gspca.c   |  209 +-
 gspca.h   |   13 +++
 pac7302.c |   39 +++
 t613.c|   49 ++
 4 files changed, 307 insertions(+), 3 deletions(-)

Thanks.

-- 
Ken ar c'hentañ | ** Breizh ha Linux atav! **
Jef |   http://moinejf.free.fr/
--
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  http://vger.kernel.org/majordomo-info.html


Re: [PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2010-01-23 Thread Németh Márton
Jean-Francois Moine írta:
 On Fri, 22 Jan 2010 18:54:46 -0200
 Mauro Carvalho Chehab mche...@infradead.org wrote:
 
 Huh?
 -static int reg_w_buf(struct gspca_dev *gspca_dev,
 +static void reg_w_buf(struct gspca_dev *gspca_dev,
   __u8 index,
   const char *buffer, int len)
  {
 int ret;
  
 +   if (gspca_dev-usb_err  0)
 +   return;

 This is an ugly and non-standard way to report errors in C. Just
 return the error code.
 
 Perhaps, but a code as:
 
   foo(x);
   bar(y);
   bla(z);
   ...
 
 is more readable, smaller and quicker (less MMU switches) than:

What do you mean under MMU switches?

 
   rc = foo(x);
   if (rc  0)
   return rc;
   rc = bar(y);
   if (rc  0)
   return rc;
   rc = bla(z);
   if (rc  0)
   return rc;
   ...
 
 An other way to do it is to use longjump, but I don't think it works in
 the kernel...
 
 Best regards.
 

--
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  http://vger.kernel.org/majordomo-info.html


Re: [PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2010-01-23 Thread Jean-Francois Moine
On Sat, 23 Jan 2010 09:10:44 +0100
Németh Márton nm...@freemail.hu wrote:

  is more readable, smaller and quicker (less MMU switches) than:
 
 What do you mean under MMU switches?

The MMU has an associative memory which is used in the first step to
translate a logical address (page) to the physical RAM address. Every
time an address is not in this memory, a MMU interrupt occurs. Then, the
system scans the page tables of the process, and either reloads the
associative memory or calls the swap system to bring the page into the physical 
memory.

An associative memory is complex and its complexity grows exponentially
with its size. So, usually, it is rather small. Then, the more the code
is small and the less MMU interrupts occur...

-- 
Ken ar c'hentañ | ** Breizh ha Linux atav! **
Jef |   http://moinejf.free.fr/
--
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  http://vger.kernel.org/majordomo-info.html


Re: [PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2010-01-23 Thread Mauro Carvalho Chehab
Jean-Francois Moine wrote:
 On Sat, 23 Jan 2010 09:10:44 +0100
 Németh Márton nm...@freemail.hu wrote:
 
 is more readable, smaller and quicker (less MMU switches) than:
 What do you mean under MMU switches?
 
 The MMU has an associative memory which is used in the first step to
 translate a logical address (page) to the physical RAM address. Every
 time an address is not in this memory, a MMU interrupt occurs. Then, the
 system scans the page tables of the process, and either reloads the
 associative memory or calls the swap system to bring the page into the 
 physical memory.
 
 An associative memory is complex and its complexity grows exponentially
 with its size. So, usually, it is rather small. Then, the more the code
 is small and the less MMU interrupts occur...

Linux doesn't use swap memory for the kernel. It will be using a physical RAM 
memory
for the entire kernel. So, I don't think MMU applies here.

Cheers,
Mauro.

--
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  http://vger.kernel.org/majordomo-info.html


Re: [PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2010-01-23 Thread Németh Márton
Mauro Carvalho Chehab írta:
 Jean-Francois Moine wrote:
 On Sat, 23 Jan 2010 09:10:44 +0100
 Németh Márton nm...@freemail.hu wrote:

 is more readable, smaller and quicker (less MMU switches) than:
 What do you mean under MMU switches?
 The MMU has an associative memory which is used in the first step to
 translate a logical address (page) to the physical RAM address. Every
 time an address is not in this memory, a MMU interrupt occurs. Then, the
 system scans the page tables of the process, and either reloads the
 associative memory or calls the swap system to bring the page into the 
 physical memory.

 An associative memory is complex and its complexity grows exponentially
 with its size. So, usually, it is rather small. Then, the more the code
 is small and the less MMU interrupts occur...
 
 Linux doesn't use swap memory for the kernel. It will be using a physical RAM 
 memory
 for the entire kernel. So, I don't think MMU applies here.

As far as I can understand the description is about the cache. The cache is the 
storage
area which is usually small and speeds up RAM access.

Regards,

Márton Németh
--
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  http://vger.kernel.org/majordomo-info.html


Re: [PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2010-01-23 Thread Jean-Francois Moine
On Sat, 23 Jan 2010 12:05:19 -0200
Mauro Carvalho Chehab mche...@redhat.com wrote:

  An associative memory is complex and its complexity grows
  exponentially with its size. So, usually, it is rather small. Then,
  the more the code is small and the less MMU interrupts occur...  
 
 Linux doesn't use swap memory for the kernel. It will be using a
 physical RAM memory for the entire kernel. So, I don't think MMU
 applies here.

Well, it is a long time since I did not program an embedded system!
In the last one, the cpu was a PowerPC maybe 603 or similar.
I retrieved the MMU sequence I was talking about in the linux kernel.
The associative memory is called the TLB. In the file

arch/powerpc/kernel/head_32.S

you may see the treatment of the tlb interrupts (InstructionTLBMiss,
DataLoadTLBMiss and DataStoreTLBMiss). Such interrupts occur at the
lowest level, even when the cpu is running in the kernel state.

These interrupts are different from page faults which occur when a
memory page is not mapped, and, hopefully, the kernel code is always
mapped...

Cheers.

-- 
Ken ar c'hentañ | ** Breizh ha Linux atav! **
Jef |   http://moinejf.free.fr/
--
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  http://vger.kernel.org/majordomo-info.html


Re: [PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2010-01-22 Thread Mauro Carvalho Chehab
Jean-Francois Moine wrote:
 Hi Mauro,
 
 Please pull from http://linuxtv.org/hg/~jfrancois/v4l-dvb
 
 for the following 9 changesets:
 
 01/09: gspca - zc3xx: Change the resolutions of some sensors.
 http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=b2c81ce31b88
 
 02/09: gspca - pac7302/pac7311: Remove the unused page loading.
 http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=8c4f87786f70
 
 03/09: gspca - pac7302: Use usb_err to propagate USB errors.
 http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=89e8a8fb18ab

Huh?
-static int reg_w_buf(struct gspca_dev *gspca_dev,
+static void reg_w_buf(struct gspca_dev *gspca_dev,
  __u8 index,
  const char *buffer, int len)
 {
int ret;
 
+   if (gspca_dev-usb_err  0)
+   return;

This is an ugly and non-standard way to report errors in C. Just return the 
error
code.


 
 04/09: gspca - pac7311: Use usb_err to propagate USB errors.
 http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=ec69be3f2189

The same applies here. 

Cheers
Mauro
--
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  http://vger.kernel.org/majordomo-info.html


Re: [PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2010-01-22 Thread Jean-Francois Moine
On Fri, 22 Jan 2010 18:54:46 -0200
Mauro Carvalho Chehab mche...@infradead.org wrote:

 Huh?
 -static int reg_w_buf(struct gspca_dev *gspca_dev,
 +static void reg_w_buf(struct gspca_dev *gspca_dev,
   __u8 index,
   const char *buffer, int len)
  {
 int ret;
  
 +   if (gspca_dev-usb_err  0)
 +   return;
 
 This is an ugly and non-standard way to report errors in C. Just
 return the error code.

Perhaps, but a code as:

foo(x);
bar(y);
bla(z);
...

is more readable, smaller and quicker (less MMU switches) than:

rc = foo(x);
if (rc  0)
return rc;
rc = bar(y);
if (rc  0)
return rc;
rc = bla(z);
if (rc  0)
return rc;
...

An other way to do it is to use longjump, but I don't think it works in
the kernel...

Best regards.

-- 
Ken ar c'hentañ | ** Breizh ha Linux atav! **
Jef |   http://moinejf.free.fr/
--
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  http://vger.kernel.org/majordomo-info.html


[PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2010-01-16 Thread Jean-Francois Moine
Hi Mauro,

Please pull from http://linuxtv.org/hg/~jfrancois/v4l-dvb

for the following 9 changesets:

01/09: gspca - zc3xx: Change the resolutions of some sensors.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=b2c81ce31b88

02/09: gspca - pac7302/pac7311: Remove the unused page loading.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=8c4f87786f70

03/09: gspca - pac7302: Use usb_err to propagate USB errors.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=89e8a8fb18ab

04/09: gspca - pac7311: Use usb_err to propagate USB errors.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=ec69be3f2189

05/09: gspca - main: Clear any previous USB error when starting the transfer.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=0e786e0e1304

06/09: gspca - ov534_9: Propagate USB errors to higher level.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=86ddca1f84e3

07/09: gspca - ov534: Allow enumerating supported framerates.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=df30e531917f

08/09: gspca - ov534: Fix end of frame handling.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=f5ed66e36d53

09/09: gspca - sq905c: Fix a compilation warning.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=e7e9bfc2ecf0


 gspca.c   |2 
 gspca.h   |2 
 ov534.c   |   19 
 ov534_9.c |   18 ++--
 pac7302.c |  263 +++---
 pac7311.c |  212 +++--
 sq905c.c  |2 
 zc3xx.c   |   52 ++--
 8 files changed, 255 insertions(+), 315 deletions(-)

Thanks.

-- 
Ken ar c'hentañ | ** Breizh ha Linux atav! **
Jef |   http://moinejf.free.fr/
--
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  http://vger.kernel.org/majordomo-info.html


[PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2010-01-12 Thread Jean-Francois Moine
Hi Mauro,

I added an important bug fix.

Please pull from http://linuxtv.org/hg/~jfrancois/v4l-dvb

for the following 12 changesets:

01/12: gspca - ov534/ov534_9: Split the ov534 subdriver.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=b3b5fdea85f9

02/12: gspca - zc3xx: Cleanup code.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=88b763c4059e

03/12: gspca - zc3xx: Rename the USB sequences.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=2f95fe18d345

04/12: gspca - zc3xx: Fix hdcs2020 probe.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=5fa0a60e8b87

05/12: gspca - zc3xx: Let default sharpness for sensor pas202b.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=7135f9402c0d

06/12: gspca - zc3xx: Remove unuseful register write.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=6d982f8d5472

07/12: gspca - zc3xx: Switch off the LED on resume.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=be00fd76345f

08/12: gspca - zc3xx: Simplify code.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=e57ed5ad2d90

09/12: gspca - sunplus: Optimize and remove unused sequences.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=40901861f5d0

10/12: gspca - main: Change the check of the USB video interface.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=09a30227151c

11/12: gspca - pac7302: Fix a random USB error.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=ea88b3abee04

12/12: gspca - sonixj: Fix bad video mode for all webcams.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=a38bcee4174a


 b/linux/drivers/media/video/gspca/ov534_9.c | 1477 
 linux/Documentation/video4linux/gspca.txt   |3 
 linux/drivers/media/video/gspca/Kconfig |   16 
 linux/drivers/media/video/gspca/Makefile|2 
 linux/drivers/media/video/gspca/gspca.c |9 
 linux/drivers/media/video/gspca/ov534.c | 1242 +--
 linux/drivers/media/video/gspca/pac7302.c   |2 
 linux/drivers/media/video/gspca/sonixj.c|6 
 linux/drivers/media/video/gspca/sunplus.c   |   63 -
 linux/drivers/media/video/gspca/zc3xx.c |  352 +++---
 10 files changed, 1790 insertions(+), 1382 deletions(-)

Thanks.

-- 
Ken ar c'hentañ | ** Breizh ha Linux atav! **
Jef |   http://moinejf.free.fr/
--
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  http://vger.kernel.org/majordomo-info.html


[PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2010-01-11 Thread Jean-Francois Moine
Hi Mauro,

Please pull from http://linuxtv.org/hg/~jfrancois/v4l-dvb

for the following 11 changesets:

01/11: gspca - ov534/ov534_9: Split the ov534 subdriver.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=b3b5fdea85f9

02/11: gspca - zc3xx: Cleanup code.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=88b763c4059e

03/11: gspca - zc3xx: Rename the USB sequences.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=2f95fe18d345

04/11: gspca - zc3xx: Fix hdcs2020 probe.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=5fa0a60e8b87

05/11: gspca - zc3xx: Let default sharpness for sensor pas202b.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=7135f9402c0d

06/11: gspca - zc3xx: Remove unuseful register write.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=6d982f8d5472

07/11: gspca - zc3xx: Switch off the LED on resume.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=be00fd76345f

08/11: gspca - zc3xx: Simplify code.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=e57ed5ad2d90

09/11: gspca - sunplus: Optimize and remove unused sequences.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=40901861f5d0

10/11: gspca - main: Change the check of the USB video interface.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=09a30227151c

11/11: gspca - pac7302: Fix a random USB error.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=ea88b3abee04


 b/linux/drivers/media/video/gspca/ov534_9.c | 1477 
 linux/Documentation/video4linux/gspca.txt   |3 
 linux/drivers/media/video/gspca/Kconfig |   16 
 linux/drivers/media/video/gspca/Makefile|2 
 linux/drivers/media/video/gspca/gspca.c |9 
 linux/drivers/media/video/gspca/ov534.c | 1242 +--
 linux/drivers/media/video/gspca/pac7302.c   |2 
 linux/drivers/media/video/gspca/sunplus.c   |   63 -
 linux/drivers/media/video/gspca/zc3xx.c |  352 +++---
 9 files changed, 1787 insertions(+), 1379 deletions(-)

Thanks.

-- 
Ken ar c'hentañ | ** Breizh ha Linux atav! **
Jef |   http://moinejf.free.fr/
--
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  http://vger.kernel.org/majordomo-info.html


[PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2010-01-09 Thread Jean-Francois Moine
Hi Mauro,

I added a bug fix which should go to the kernel 2.6.33.

Please pull from http://linuxtv.org/hg/~jfrancois/v4l-dvb

for the following 10 changesets:

01/10: gspca - vc032x: Fix bad probe of the sensor mi1320.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=89f9221d4555

02/10: gspca - vc032x: Add the H and V flip controls for sensor mi1320.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=17a73955b94a

03/10: gspca - vc032x: Change the sensor of 046d:0892 and 046d:0896.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=cbd0fdc04914

04/10: gspca - sonixj: Add more controls.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=dd4a73349d62

05/10: gspca - zc3xx: Fix the contrast control.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=b978912adcaa

06/10: gspca - zc3xx: Adjust the pas202b exchanges.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=aa0e795c6db3

07/10: gspca - main: Check the interface class at probe time.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=5b914c313b68

08/10: gspca - some subdrivers: Make sd_desc const.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=5e4054307384

09/10: gspca - all subdrivers: Make control descriptors constant.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=163a46b2f384

10/10: gspca - sunplus: Fix bridge exchanges.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=3aa6e0e16208


 benq.c|2 
 conex.c   |4 
 etoms.c   |4 
 gl860/gl860.c |   10 
 gspca.c   |8 
 mars.c|2 
 mr97310a.c|2 
 ov534.c   |4 
 pac207.c  |2 
 pac7302.c |4 
 pac7311.c |4 
 sn9c20x.c |2 
 sonixb.c  |2 
 sonixj.c  |  130 ++
 spca500.c |4 
 spca501.c |2 
 spca505.c |2 
 spca506.c |4 
 spca508.c |2 
 spca561.c |4 
 stk014.c  |2 
 stv0680.c |2 
 sunplus.c |   28 +-
 t613.c|2 
 tv8532.c  |2 
 vc032x.c  |  716 +++---
 zc3xx.c   |  257 +---
 27 files changed, 877 insertions(+), 330 deletions(-)

Thanks.

-- 
Ken ar c'hentañ | ** Breizh ha Linux atav! **
Jef |   http://moinejf.free.fr/
--
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  http://vger.kernel.org/majordomo-info.html


[PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2010-01-05 Thread Jean-Francois Moine
Hi Mauro,

Please pull from http://linuxtv.org/hg/~jfrancois/v4l-dvb

for the following 9 changesets:

01/09: gspca - vc032x: Fix bad probe of the sensor mi1320.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=89f9221d4555

02/09: gspca - vc032x: Add the H and V flip controls for sensor mi1320.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=17a73955b94a

03/09: gspca - vc032x: Change the sensor of 046d:0892 and 046d:0896.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=cbd0fdc04914

04/09: gspca - sonixj: Add more controls.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=dd4a73349d62

05/09: gspca - zc3xx: Fix the contrast control.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=b978912adcaa

06/09: gspca - zc3xx: Adjust the pas202b exchanges.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=aa0e795c6db3

07/09: gspca - main: Check the interface class at probe time.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=5b914c313b68

08/09: gspca - some subdrivers: Make sd_desc const.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=5e4054307384

09/09: gspca - all subdrivers: Make control descriptors constant.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=163a46b2f384


 benq.c|2 
 conex.c   |4 
 etoms.c   |4 
 gl860/gl860.c |   10 
 gspca.c   |8 
 mars.c|2 
 mr97310a.c|2 
 ov534.c   |4 
 pac207.c  |2 
 pac7302.c |4 
 pac7311.c |4 
 sn9c20x.c |2 
 sonixb.c  |2 
 sonixj.c  |  130 ++
 spca500.c |4 
 spca501.c |2 
 spca505.c |2 
 spca506.c |4 
 spca508.c |2 
 spca561.c |4 
 stk014.c  |2 
 stv0680.c |2 
 sunplus.c |2 
 t613.c|2 
 tv8532.c  |2 
 vc032x.c  |  716 +++---
 zc3xx.c   |  257 +---
 27 files changed, 864 insertions(+), 317 deletions(-)

Thanks and happy new year!

-- 
Ken ar c'hentañ | ** Breizh ha Linux atav! **
Jef |   http://moinejf.free.fr/
--
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  http://vger.kernel.org/majordomo-info.html


[PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2009-12-26 Thread Jean-Francois Moine
Hi Mauro,

I added a bug fix which should go into linux 2.6.33.

Please pull from http://linuxtv.org/hg/~jfrancois/v4l-dvb

for the following 9 changesets:

01/09: gspca - main: Optimize code.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=ceb47e732054

02/09: gspca - main: Add the cam flag 'no_urb_create'.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=dbae53a683de

03/09: gspca - zc3xx: Add one more chipset ID of tas5130K.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=fee82c844a59

04/09: gspca - sn9c20x: Fix test of unsigned.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=e0ec15eaeab6

05/09: gspca - sn9c20x: Cleanup code.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=d654a6c81fa1

06/09: gspca - zc3xx: Bad detection of sensor HV7131R(c).
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=332fe9cc577c

07/09: gspca - benq: New subdriver for camera 04a5:3035.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=fbbb6717feb5

08/09: gspca - sonixj: Add sensor adcm1700 and webcam 0c45:614a.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=ffe9eaea7ab6

09/09: gspca - vc032x: Fix a possible crash with the vc0321 bridge.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=e77df7995fad


 b/linux/drivers/media/video/gspca/benq.c  |  330 ++
 linux/Documentation/video4linux/gspca.txt |2 
 linux/drivers/media/video/gspca/Kconfig   |9 
 linux/drivers/media/video/gspca/Makefile  |2 
 linux/drivers/media/video/gspca/gspca.c   |   38 +--
 linux/drivers/media/video/gspca/gspca.h   |   12 -
 linux/drivers/media/video/gspca/sn9c20x.c |   33 +--
 linux/drivers/media/video/gspca/sonixj.c  |  190 +
 linux/drivers/media/video/gspca/vc032x.c  |4 
 linux/drivers/media/video/gspca/zc3xx.c   |   18 +
 10 files changed, 558 insertions(+), 80 deletions(-)

Thanks.

-- 
Ken ar c'hentañ | ** Breizh ha Linux atav! **
Jef |   http://moinejf.free.fr/
--
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  http://vger.kernel.org/majordomo-info.html


[PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2009-12-20 Thread Jean-Francois Moine
Hi Mauro,

Please pull from http://linuxtv.org/hg/~jfrancois/v4l-dvb

for the following 8 changesets:

01/08: gspca - main: Optimize code.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=ceb47e732054

02/08: gspca - main: Add the cam flag 'no_urb_create'.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=dbae53a683de

03/08: gspca - zc3xx: Add one more chipset ID of tas5130K.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=fee82c844a59

04/08: gspca - sn9c20x: Fix test of unsigned.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=e0ec15eaeab6

05/08: gspca - sn9c20x: Cleanup code.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=d654a6c81fa1

06/08: gspca - zc3xx: Bad detection of sensor HV7131R(c).
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=332fe9cc577c

07/08: gspca - benq: New subdriver for camera 04a5:3035.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=fbbb6717feb5

08/08: gspca - sonixj: Add sensor adcm1700 and webcam 0c45:614a.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=ffe9eaea7ab6


 b/linux/drivers/media/video/gspca/benq.c  |  330 ++
 linux/Documentation/video4linux/gspca.txt |2 
 linux/drivers/media/video/gspca/Kconfig   |9 
 linux/drivers/media/video/gspca/Makefile  |2 
 linux/drivers/media/video/gspca/gspca.c   |   38 +--
 linux/drivers/media/video/gspca/gspca.h   |   12 -
 linux/drivers/media/video/gspca/sn9c20x.c |   33 +--
 linux/drivers/media/video/gspca/sonixj.c  |  190 +
 linux/drivers/media/video/gspca/zc3xx.c   |   18 +
 9 files changed, 554 insertions(+), 80 deletions(-)

Thanks.

-- 
Ken ar c'hentañ | ** Breizh ha Linux atav! **
Jef |   http://moinejf.free.fr/
--
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  http://vger.kernel.org/majordomo-info.html


[PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2009-12-14 Thread Jean-Francois Moine
Hi Mauro,

Please pull from http://linuxtv.org/hg/~jfrancois/v4l-dvb

for the following changeset:

01/01: gspca - include: Fix compile errors with kernels  2.6.25.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=7f4a47d55f36


 linux/drivers/media/video/gspca/gspca.h   |1 +
 linux/drivers/media/video/gspca/sn9c20x.c |1 -
 linux/drivers/media/video/gspca/stv06xx/stv06xx.h |1 -
 v4l/compat.h  |4 
 4 files changed, 5 insertions(+), 2 deletions(-)

Thanks.

-- 
Ken ar c'hentañ | ** Breizh ha Linux atav! **
Jef |   http://moinejf.free.fr/
--
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  http://vger.kernel.org/majordomo-info.html


[PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2009-12-14 Thread Jean-Francois Moine
Hi Mauro,

Forgive about the previous pull request and 

please pull from http://linuxtv.org/hg/~jfrancois/v4l-dvb

for the following 3 changesets:

01/03: gspca - include: Fix compile errors with kernels  2.6.25.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=696f668232b3

02/03: gspca - sunplus: Add webcam 052b:1507.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=40f9ad7c1cec

03/03: gspca - main: Set the current frame pointer when first qbuf.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=bdc9ee6ae5f2


 Documentation/video4linux/gspca.txt |1 +
 drivers/media/video/gspca/gspca.c   |2 ++
 drivers/media/video/gspca/gspca.h   |1 +
 drivers/media/video/gspca/sn9c20x.c |1 -
 drivers/media/video/gspca/stv06xx/stv06xx.h |1 -
 drivers/media/video/gspca/sunplus.c |1 +
 6 files changed, 5 insertions(+), 2 deletions(-)

Thanks.

-- 
Ken ar c'hentañ | ** Breizh ha Linux atav! **
Jef |   http://moinejf.free.fr/
--
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  http://vger.kernel.org/majordomo-info.html


[PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2009-12-12 Thread Jean-Francois Moine
Hi Mauro,

Please pull from http://linuxtv.org/hg/~jfrancois/v4l-dvb

for the following 2 changesets:

01/02: gspca - many subdrivers: Fix some warnings.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=a095d9112c22

02/02: gspca - zc3xx: Set the quality for sensor tas5130c.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=f3948ed655bb


 gl860/gl860-mi1320.c |2 +-
 gl860/gl860-mi2020.c |2 +-
 gl860/gl860.c|   10 +-
 gspca.c  |6 --
 m5602/m5602_core.c   |4 ++--
 m5602/m5602_ov9650.c |2 +-
 m5602/m5602_s5k4aa.c |   10 --
 mr97310a.c   |2 +-
 ov519.c  |   14 +++---
 sn9c20x.c|7 +++
 zc3xx.c  |1 -
 11 files changed, 33 insertions(+), 27 deletions(-)

Thanks.

-- 
Ken ar c'hentañ | ** Breizh ha Linux atav! **
Jef |   http://moinejf.free.fr/
--
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  http://vger.kernel.org/majordomo-info.html


[PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2009-12-11 Thread Jean-Francois Moine
Hi Mauro,

Please pull from http://linuxtv.org/hg/~jfrancois/v4l-dvb

for the following 2 changesets:

01/02: gspca - some subdrivers: Make device_table[]s constant.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=0ba73f8e8517

02/02: gspca - ov534: Fix a compilation warning.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=612a98aa8eec


 conex.c   |4 ++--
 etoms.c   |4 ++--
 ov534.c   |2 +-
 pac7302.c |4 ++--
 pac7311.c |4 ++--
 sonixb.c  |4 ++--
 spca506.c |4 ++--
 7 files changed, 13 insertions(+), 13 deletions(-)

Thanks.

-- 
Ken ar c'hentañ | ** Breizh ha Linux atav! **
Jef |   http://moinejf.free.fr/
--
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  http://vger.kernel.org/majordomo-info.html


[PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2009-11-24 Thread Jean-Francois Moine
Hi Mauro,

Please pull from http://linuxtv.org/hg/~jfrancois/v4l-dvb

for the following 8 changesets:

01/08: gspca - pac7311: Stop sending URBs on first error.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=ba302a8f0cb0

02/08: gspca - pac7302: Add debug register write interface.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=d6298b19319c

03/08: gspca - doc: Change the name of some webcams.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=0c4b7a86f9d4

04/08: gspca - main: Clearer message when bandwidth too small.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=a741ef6d1558

05/08: gspca - ov534: ov772x changes from Richard Kaswy.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=e3af20a0d67c

06/08: gspca - ov534: More ov772x changes from Max Thrun.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=ff1be79712d9

07/08: gspca - ov534: Fix ov772x brightness and ov965x frame rate.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=5f9099e6a713

08/08: gspca - ov534: Bad name of the ov965x 320x240 resolution.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=88498f14eaab


 Documentation/video4linux/gspca.txt |   16 
 drivers/media/video/gspca/gspca.c   |   10 
 drivers/media/video/gspca/ov534.c   |  908 +++-
 drivers/media/video/gspca/pac7302.c |   54 ++
 drivers/media/video/gspca/pac7311.c |   31 -
 5 files changed, 891 insertions(+), 128 deletions(-)

Thanks.

-- 
Ken ar c'hentañ | ** Breizh ha Linux atav! **
Jef |   http://moinejf.free.fr/
--
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  http://vger.kernel.org/majordomo-info.html


[PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2009-11-24 Thread Jean-Francois Moine
Hi Mauro,

Please pull from http://linuxtv.org/hg/~jfrancois/v4l-dvb

for the following 6 changesets:

01/06: gspca - main: Add a gspca flag for inactive controls.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=338ce756cb5d

02/06: gspca - ov534: The AWB control works only when autogain is set.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=2206d90dfbcd

03/06: gspca - main: Clear the urb status before resubmit.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=282beded38cf

04/06: gspca - main: Memorize the current frame buffer.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=da0c5f5614fb

05/06: gspca - main: Let the driver scan URB packets when no frame buffer.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=e7db73a24782

06/06: gspca - all subdrivers: Remove the unused frame ptr from pkt_scan().
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=36a36f1911c5


 conex.c|   12 +++
 etoms.c|   10 ++
 finepix.c  |   23 --
 gl860/gl860.c  |   10 +++---
 gspca.c|   84 +++--
 gspca.h|   14 
 jeilinj.c  |   21 +
 m5602/m5602_core.c |   25 ++-
 mars.c |   11 +++---
 mr97310a.c |   11 +++---
 ov519.c|   54 +++---
 ov534.c|   55 --
 pac207.c   |   11 +++---
 pac7302.c  |   22 -
 pac7311.c  |   22 -
 sn9c20x.c  |   11 +++---
 sonixb.c   |   21 -
 sonixj.c   |7 +---
 spca500.c  |   11 +++---
 spca501.c  |   14 ++--
 spca505.c  |   10 +-
 spca506.c  |   12 ++-
 spca508.c  |   10 +-
 spca561.c  |   14 +++-
 sq905.c|   21 +
 sq905c.c   |   12 ++-
 stk014.c   |   11 +++---
 stv0680.c  |7 +---
 stv06xx/stv06xx.c  |   11 +++---
 sunplus.c  |   11 +++---
 t613.c |7 +---
 tv8532.c   |7 +---
 vc032x.c   |   21 +++--
 w996Xcf.c  |   13 +++-
 zc3xx.c|   11 +++---
 35 files changed, 292 insertions(+), 335 deletions(-)

Thanks.

-- 
Ken ar c'hentañ | ** Breizh ha Linux atav! **
Jef |   http://moinejf.free.fr/
--
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  http://vger.kernel.org/majordomo-info.html


[PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2009-11-24 Thread Jean-Francois Moine
Hi Mauro,

Please pull from http://linuxtv.org/hg/~jfrancois/v4l-dvb

for the following 5 changesets:

01/05: gspca - ov534: Add svga, xga and sxga modes for ov965x.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=b9e583cef80a

02/05: gspca - ov534: Remove extra values at end of ov965x sequences.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=74b5fe20e617

03/05: gspca - sonixj: Add the sensor po1030.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=fb7fbe2595ee

04/05: gspca - ov534: Add controls for sensor ov965x.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=e9012491eba4

05/05: gspca - vc032x: Avoid crash on querymenu.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=f06a58541230


 ov534.c  |  802 ---
 sonixj.c |  191 +--
 vc032x.c |2 
 3 files changed, 849 insertions(+), 146 deletions(-)

Thanks.

-- 
Ken ar c'hentañ | ** Breizh ha Linux atav! **
Jef |   http://moinejf.free.fr/
--
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  http://vger.kernel.org/majordomo-info.html


[PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2009-11-23 Thread Jean-Francois Moine
Hi Mauro,

Maybe my previous mail was lost..

Please pull from http://linuxtv.org/hg/~jfrancois/v4l-dvb

for the following 8 changesets:

01/08: gspca - pac7302: Remove redundant stream off command.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=1551c621e75f

02/08: gspca - pac7311/pac7302: Propagate error to higher level
software.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=225a5744acf3

03/08: gspca - sonixj: Optimize code and add some comments.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=f174339c63cf

04/08: gspca - pac7302: Add red and blue balance control.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=4ddc02bee41d

05/08: gspca - main: Change version to 2.8.0.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=63484417ba70

06/08: gspca - main: Fix a compilation warning.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=da92c97c33c4

07/08: gspca - pac7302: Add white balance control.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=aa28984b1f48

08/08: gspca - pac7302: Handle return values in sd_start().
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=3fd924da7091


 gspca.c   |6 -
 pac7302.c |  346
 +++---
 pac7311.c |  161 ++-- sonixj.c  |  163
 ++--- 4 files changed, 480 insertions(+), 196
 deletions(-)

Thanks.

-- 
Ken ar c'hentañ | ** Breizh ha Linux atav! **
Jef |   http://moinejf.free.fr/
--
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  http://vger.kernel.org/majordomo-info.html


[PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2009-11-02 Thread Jean-Francois Moine
Hi Mauro,

Please pull from http://linuxtv.org/hg/~jfrancois/v4l-dvb

for the following 9 changesets:

01/09: gspca - pac207/pac7311/mr97310a: Simplify pac_find_sof.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=4d776e15a7c7

02/09: gspca - pac7311: Extract pac_start_frame.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=95ca3e367d8f

03/09: gspca - pac7302/pac7311: Separate the two subdrivers.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=0ddd84f6c2a3

04/09: gspca - sonixj: Simplify the sensor init exchanges.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=aaa5701f53ef

05/09: gspca - sonixj: Fix some bad values of sensor om6802.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=1b8a5350a309

06/09: gspca - sonixj: Change sensor and om6802 exchanges.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=d0e8646eb132

07/09: gspca - sonixj: Don't access the sensor when setting the bridge.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=091b068cc060

08/09: gspca - sonixj: The V flip control does not exist for all sensors.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=e8d2746a94ad

09/09: gspca - sonixj: Change the copyright.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=e628f4381170


 b/linux/drivers/media/video/gspca/pac7302.c  |  976 +++
 linux/drivers/media/video/gspca/Kconfig  |9 
 linux/drivers/media/video/gspca/Makefile |2 
 linux/drivers/media/video/gspca/mr97310a.c   |3 
 linux/drivers/media/video/gspca/pac207.c |2 
 linux/drivers/media/video/gspca/pac7311.c|  484 ++---
 linux/drivers/media/video/gspca/pac_common.h |   27 
 linux/drivers/media/video/gspca/sonixj.c |  348 -
 8 files changed, 1262 insertions(+), 589 deletions(-)

Thanks.

-- 
Ken ar c'hentañ | ** Breizh ha Linux atav! **
Jef |   http://moinejf.free.fr/
--
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  http://vger.kernel.org/majordomo-info.html


[PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2009-10-29 Thread Jean-Francois Moine
Hi Mauro,

Please pull from http://linuxtv.org/hg/~jfrancois/v4l-dvb

for the following 3 changesets:

01/03: gspca - pac7311: Webcam 093a:2628 added.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=43d143960b40

02/03: gspca - zc3xx: Add some delays and warn on i2c errors.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=d186e2bef611

03/03: gspca - sonixj: Cleanup code and change some comments.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=27cd66e3d69d


 Documentation/video4linux/gspca.txt |1 
 drivers/media/video/gspca/pac7311.c |1 
 drivers/media/video/gspca/sonixj.c  |   43 ++--
 drivers/media/video/gspca/zc3xx.c   |   15 +++-
 4 files changed, 33 insertions(+), 27 deletions(-)

Thanks.

-- 
Ken ar c'hentañ | ** Breizh ha Linux atav! **
Jef |   http://moinejf.free.fr/
--
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  http://vger.kernel.org/majordomo-info.html


[PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2009-10-19 Thread Jean-Francois Moine
Hi Mauro,

Please pull from http://linuxtv.org/hg/~jfrancois/v4l-dvb

for the following 7 changesets:

01/07: gspca - pac_common: redesign function for finding Start Of Frame
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=ad4a5d890531

02/07: gspca - zc3xx.c: Change init sequences of sensor tas5130c.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=63ed9eaf9dab

03/07: gspca - gl860: improvement of the main driver part
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=2419f8d0a6a5

04/07: gspca - gl860: comment changes and naming scheme egalization
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=c550078def7d

05/07: gspca - gl860: add flip/mirror for OV2640
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=f6f5465b0d73

06/07: gspca - sonixj: Adjust colors and autogain for sensor om6802.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=795c36ee2c54

07/07: gspca - ov519: Bad frame pointer in ovfx2 packet scan.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=3f260d13f511


 gl860/gl860-mi1320.c |   55 +--
 gl860/gl860-mi2020.c |   69 ++---
 gl860/gl860-ov2640.c |  156 ++-
 gl860/gl860-ov9655.c |   43 
 gl860/gl860.c|   51 --
 gl860/gl860.h|7 -
 ov519.c  |2 
 pac_common.h |   84 
 sonixj.c |   12 ++
 zc3xx.c  |  254 ---
 10 files changed, 353 insertions(+), 380 deletions(-)

Thanks.

-- 
Ken ar c'hentañ | ** Breizh ha Linux atav! **
Jef |   http://moinejf.free.fr/
--
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  http://vger.kernel.org/majordomo-info.html


[PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2009-10-04 Thread Jean-Francois Moine
Hi Mauro,

Please pull from http://linuxtv.org/hg/~jfrancois/v4l-dvb

for the following 9 changesets:

01/09: gspca - zc3xx.c: Bad init sequences of sensor cs2102.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=a9df985afa8b

02/09: gspca - main: More information messages.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=623d282b9dee

03/09: gspca - ov519: Webcam 041e:4067 added.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=a130fb09f7ba

04/09: gspca - pac7311: remove magic value for SKIP.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=83057048024a

05/09: gspca - pac7311: remove magic values for END_OF_SEQUENCE and LOAD_PAGE.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=9bd6e09c7e65

06/09: gspca - pac7311: remove magic value for USB_BUF_SZ
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=f04ab219bab3

07/09: gspca - pac7311: remove redundant register page switching
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=5195f5ee49ef

08/09: gspca - pac7311: add comment about JPEG header
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=de675f73cb4b

09/09: gscpa - stv06xx + ov518: dont discard every other frame
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=ade3b94a758f


 Documentation/video4linux/gspca.txt |1 
 drivers/media/video/gspca/gspca.c   |   19 -
 drivers/media/video/gspca/ov519.c   |3 
 drivers/media/video/gspca/pac7311.c |   63 ++--
 drivers/media/video/gspca/stv06xx/stv06xx.c |3 
 drivers/media/video/gspca/zc3xx.c   |  405 +++-
 6 files changed, 175 insertions(+), 319 deletions(-)

Thanks.

-- 
Ken ar c'hentañ | ** Breizh ha Linux atav! **
Jef |   http://moinejf.free.fr/
--
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  http://vger.kernel.org/majordomo-info.html


Re: [PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2009-09-17 Thread Mauro Carvalho Chehab
Em Wed, 16 Sep 2009 08:37:14 +0200
Jean-Francois Moine moin...@free.fr escreveu:

 Hi Mauro,
 
 Please pull from http://linuxtv.org/hg/~jfrancois/v4l-dvb
 
 for the following 2 changesets:
 
 01/02: gspca - vc032x: Bad GPIO of the Samsung Q1 on start/stop streaming.
 http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=314d81e7f555
 
 02/02: gspca - gl860: Addition of GL860 based webcams
 http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=dd95bb507a9e

Please fix:

/home/v4l/master/v4l/gl860.c:119: warning: 'sd_ctrls' may be used uninitialized 
in this function




Cheers,
Mauro
--
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  http://vger.kernel.org/majordomo-info.html


[PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2009-09-16 Thread Jean-Francois Moine
Hi Mauro,

Please pull from http://linuxtv.org/hg/~jfrancois/v4l-dvb

for the following 2 changesets:

01/02: gspca - vc032x: Bad GPIO of the Samsung Q1 on start/stop streaming.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=314d81e7f555

02/02: gspca - gl860: Addition of GL860 based webcams
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=dd95bb507a9e


 b/linux/drivers/media/video/gspca/gl860/Kconfig|8 
 b/linux/drivers/media/video/gspca/gl860/Makefile   |   10 
 b/linux/drivers/media/video/gspca/gl860/gl860-mi1320.c |  537 +
 b/linux/drivers/media/video/gspca/gl860/gl860-mi2020.c |  937 +
 b/linux/drivers/media/video/gspca/gl860/gl860-ov2640.c |  505 +
 b/linux/drivers/media/video/gspca/gl860/gl860-ov9655.c |  337 ++
 b/linux/drivers/media/video/gspca/gl860/gl860.c|  783 ++
 b/linux/drivers/media/video/gspca/gl860/gl860.h|  108 +
 linux/Documentation/video4linux/gspca.txt  |2 
 linux/drivers/media/video/gspca/Kconfig|1 
 linux/drivers/media/video/gspca/Makefile   |1 
 linux/drivers/media/video/gspca/vc032x.c   |7 
 12 files changed, 3233 insertions(+), 3 deletions(-)

Thanks.

-- 
Ken ar c'hentañ | ** Breizh ha Linux atav! **
Jef |   http://moinejf.free.fr/
--
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  http://vger.kernel.org/majordomo-info.html


[PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2009-09-02 Thread Jean-Francois Moine
Hi Mauro,

Please pull from http://linuxtv.org/hg/~jfrancois/v4l-dvb

for the following 7 changesets:

01/07: gspca - pac7311: Webcam 06f8:3009 added.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=f9cc6f2ba58e

02/07: gspca - sonixj: Don't use mdelay().
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=8924077bffb8

03/07: gspca - sunplus: Optimize code.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=7f60302cca90

04/07: gspca - sunplus: The brightness is signed.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=652a4093feba

05/07: gspca - vc032x: Change the start exchanges of the sensor hv7131r.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=3d72f5ec98c5

06/07: gspca - vc032x: Do the LED work with the sensor hv7131r.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=55cd18be7e3e

07/07: gspca - sonixj / sn9c102: Two drivers for 0c45:60fc and 0c45:613e.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=e17d789d2d89


 Documentation/video4linux/gspca.txt|1 
 drivers/media/video/gspca/pac7311.c|1 
 drivers/media/video/gspca/sonixj.c |4 
 drivers/media/video/gspca/sunplus.c|  378 +++--
 drivers/media/video/gspca/vc032x.c |  278 --
 drivers/media/video/sn9c102/sn9c102_devtable.h |2 
 6 files changed, 358 insertions(+), 306 deletions(-)

Thanks.

-- 
Ken ar c'hentañ | ** Breizh ha Linux atav! **
Jef |   http://moinejf.free.fr/
--
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  http://vger.kernel.org/majordomo-info.html


[PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2009-08-26 Thread Jean-Francois Moine
Hi Mauro,

I added an other important change. Both should go to the 2.6.31.

Please pull from http://linuxtv.org/hg/~jfrancois/v4l-dvb

for the following 2 changesets:

01/02: gspca - sonixj: Do the ov7660 sensor work again.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=98695b5864e0

02/02: gspca - sn9c20x: Fix gscpa sn9c20x build errors.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=57c666b8ef50


 Kconfig  |2 +-
 sonixj.c |   20 +---
 2 files changed, 14 insertions(+), 8 deletions(-)

Thanks.

-- 
Ken ar c'hentañ | ** Breizh ha Linux atav! **
Jef |   http://moinejf.free.fr/
--
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  http://vger.kernel.org/majordomo-info.html


[PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2009-08-16 Thread Jean-Francois Moine
Hi Mauro,

Please pull from http://linuxtv.org/hg/~jfrancois/v4l-dvb

for the following changeset:

01/01: gspca - jeilinj: New subdriver for Jeilin chip.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=a5fc9900e604


 b/linux/drivers/media/video/gspca/jeilinj.c |  388 
 linux/Documentation/video4linux/gspca.txt   |1 
 linux/drivers/media/video/gspca/Kconfig |9 
 linux/drivers/media/video/gspca/Makefile|2 
 4 files changed, 400 insertions(+)

Thanks.

-- 
Ken ar c'hentañ | ** Breizh ha Linux atav! **
Jef |   http://moinejf.free.fr/
--
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  http://vger.kernel.org/majordomo-info.html


[PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2009-07-19 Thread Jean-Francois Moine
Hi Mauro,

Please pull from http://linuxtv.org/hg/~jfrancois/v4l-dvb

for the following 4 changesets:

01/04: gspca - sonixj: Remove auto gain/wb/expo for the ov7660 sensor.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=20ce8d471890

02/04: gspca - sunplus: Webcam 052b:1803 added.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=a0b083540788

03/04: gspca - main: Support for vidioc_g_chip_ident and vidioc_g/s_register.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=9fd1376a7caf

04/04: gspca - sn9c20x: New subdriver for sn9c201 and sn9c202 bridges.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=122d4e155f94


 b/linux/drivers/media/video/gspca/sn9c20x.c | 2433 
 linux/Documentation/video4linux/gspca.txt   |   33 
 linux/drivers/media/video/gspca/Kconfig |   16 
 linux/drivers/media/video/gspca/Makefile|2 
 linux/drivers/media/video/gspca/gspca.c |   73 
 linux/drivers/media/video/gspca/gspca.h |9 
 linux/drivers/media/video/gspca/sonixj.c|   19 
 linux/drivers/media/video/gspca/sunplus.c   |   10 
 linux/include/linux/videodev2.h |1 
 linux/include/media/v4l2-chip-ident.h   |   12 
 10 files changed, 2602 insertions(+), 6 deletions(-)

Thanks.

-- 
Ken ar c'hentañ | ** Breizh ha Linux atav! **
Jef |   http://moinejf.free.fr/
--
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  http://vger.kernel.org/majordomo-info.html


[PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2009-07-19 Thread Jean-Francois Moine
Hi Mauro,

I forgot an important fix.

Please pull from http://linuxtv.org/hg/~jfrancois/v4l-dvb

for the following 5 changesets:

01/05: gspca - sonixj: Remove auto gain/wb/expo for the ov7660 sensor.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=20ce8d471890

02/05: gspca - sunplus: Webcam 052b:1803 added.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=a0b083540788

03/05: gspca - main: Support for vidioc_g_chip_ident and vidioc_g/s_register.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=9fd1376a7caf

04/05: gspca - sn9c20x: New subdriver for sn9c201 and sn9c202 bridges.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=122d4e155f94

05/05: gspca - jpeg subdrivers: Check the result of kmalloc(jpeg header).
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=940699967206


 b/linux/drivers/media/video/gspca/sn9c20x.c | 2433 
 linux/Documentation/video4linux/gspca.txt   |   33 
 linux/drivers/media/video/gspca/Kconfig |   16 
 linux/drivers/media/video/gspca/Makefile|2 
 linux/drivers/media/video/gspca/conex.c |2 
 linux/drivers/media/video/gspca/gspca.c |   73 
 linux/drivers/media/video/gspca/gspca.h |9 
 linux/drivers/media/video/gspca/mars.c  |2 
 linux/drivers/media/video/gspca/sonixj.c|   21 
 linux/drivers/media/video/gspca/spca500.c   |2 
 linux/drivers/media/video/gspca/stk014.c|2 
 linux/drivers/media/video/gspca/sunplus.c   |   12 
 linux/drivers/media/video/gspca/zc3xx.c |2 
 linux/include/linux/videodev2.h |1 
 linux/include/media/v4l2-chip-ident.h   |   12 
 15 files changed, 2616 insertions(+), 6 deletions(-)

Thanks.

-- 
Ken ar c'hentañ | ** Breizh ha Linux atav! **
Jef |   http://moinejf.free.fr/
--
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  http://vger.kernel.org/majordomo-info.html


[PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2009-06-12 Thread Jean-Francois Moine
Hi Mauro,

Please pull from http://linuxtv.org/hg/~jfrancois/v4l-dvb

for the following 5 changesets:

01/05: gspca - spca505: Reinitialize the webcam at resume time.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=61038fe967ba

02/05: gspca - ov519: Add support for the ov518 bridge.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=1deebaddcd75

03/05: gspca - doc: Add the 05a9:a518 webcam to the Documentation.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=fad82d75076a

04/05: gspca - main: Skip disabled controls.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=e86acef4fcfe

05/05: gspca - ov534: Do the ov772x work again.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=42367b10eb99


 Documentation/video4linux/gspca.txt |5 
 drivers/media/video/gspca/gspca.c   |  122 
 drivers/media/video/gspca/ov519.c   |  520 +---
 drivers/media/video/gspca/ov534.c   |4 
 drivers/media/video/gspca/spca505.c |   14 
 include/linux/videodev2.h   |3 
 6 files changed, 562 insertions(+), 106 deletions(-)

Thanks.

-- 
Ken ar c'hentañ | ** Breizh ha Linux atav! **
Jef |   http://moinejf.free.fr/
--
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  http://vger.kernel.org/majordomo-info.html


[PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2009-05-25 Thread Jean-Francois Moine
Hi Mauro,

Please pull from http://linuxtv.org/hg/~jfrancois/v4l-dvb

for the following 6 changesets:

01/06: gspca - spca508: Cleanup source and update copyright.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=59d19da68b20

02/06: gspca - spca508: Optimize code.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=fd77a61cef9c

03/06: gspca - ov534: JPEG 320x240 and 640x480 formats for ov965x.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=8120b8f65ea5

04/06: gspca - main: VIDIOC_ENUM_FRAMESIZES ioctl added.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=1d1836e016ab

05/06: gspca - spca561: Change the Rev12a controls.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=44abd9059b3c

06/06: gspca - spca561: Rename the 'White Balance' control to 'Hue'.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=c0fb5be5acdb


 gspca.c   |   27 
 ov534.c   |  256 +---
 spca508.c | 1905 --
 spca561.c |  105 +--
 4 files changed, 1135 insertions(+), 1158 deletions(-)

Thanks.

-- 
Ken ar c'hentañ | ** Breizh ha Linux atav! **
Jef |   http://moinejf.free.fr/
--
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  http://vger.kernel.org/majordomo-info.html


[PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2009-05-09 Thread Jean-Francois Moine
Hi Mauro,

Please pull from http://linuxtv.org/hg/~jfrancois/v4l-dvb

for the following 13 changesets:

01/13: gspca - main: Version change.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=6e7981bae474

02/13: gspca - zc3xx: Bad debug level in i2c_read.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=c4896a508047

03/13: gspca - main: Webcams cannot do both isoc and bulk image transfers.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=bcff291f0e19

04/13: gspca - main: Fix a crash when no bandwidth available.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=38bad290d8c3

05/13: gspca - main:  Set the current alternate setting only when needed.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=f1338771ea76

06/13: gspca - ov534: Don't discard the images when no UVC EOF.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=1bea41ea76b2

07/13: gspca - spca500 and sunplus: Change the 0x00 insertion mechanism.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=8394da77a4d7

08/13: gspca - main: Set the number of packets per ISOC message.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=d88871c5f43f

09/13: gspca - sonixj: Adjust some exchanges according to traces.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=0aaf580fbe5d

10/13: gspca - sonixj: Webcams with bridge sn9c128 added.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=9302abcb42ea

11/13: gspca - vc032x: Bad pixelformat for mi1320_soc.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=7ec1e0c7a78b

12/13: gspca - vc032x: mi1320_soc images are upside-down.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=8645b65b02e6

13/13: gspca - sonixj: Webcam 06f8:3008 added.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=712c57ab2315


 Documentation/video4linux/gspca.txt |6 ++
 drivers/media/video/gspca/finepix.c |1 
 drivers/media/video/gspca/gspca.c   |   48 +-
 drivers/media/video/gspca/gspca.h   |6 +-
 drivers/media/video/gspca/ov534.c   |   30 --
 drivers/media/video/gspca/sonixb.c  |2 
 drivers/media/video/gspca/sonixj.c  |   76 ++--
 drivers/media/video/gspca/spca500.c |   33 ++-
 drivers/media/video/gspca/sq905.c   |1 
 drivers/media/video/gspca/sq905c.c  |1 
 drivers/media/video/gspca/sunplus.c |   33 ++-
 drivers/media/video/gspca/vc032x.c  |   22 --
 drivers/media/video/gspca/zc3xx.c   |2 
 13 files changed, 137 insertions(+), 124 deletions(-)

Thanks.

-- 
Ken ar c'hentañ | ** Breizh ha Linux atav! **
Jef |   http://moinejf.free.fr/
--
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  http://vger.kernel.org/majordomo-info.html


[PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2009-05-02 Thread Jean-Francois Moine
Hi Mauro,

Please pull from http://linuxtv.org/hg/~jfrancois/v4l-dvb

for the following 3 changesets:

01/03: gspca - zc3xx: Bad debug level in i2c_read.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=ccddae0f5d8f

02/03: gspca - tp6800: New subdriver with webcam 06a2:0003.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=c3ae07c7c476

03/03: gspca - main: Version change.
http://linuxtv.org/hg/~jfrancois/v4l-dvb?cmd=changeset;node=b7b10bc9ad67


 b/linux/drivers/media/video/gspca/tp6800.c | 1812 +
 linux/Documentation/video4linux/gspca.txt  |1 
 linux/drivers/media/video/gspca/Kconfig|   10 
 linux/drivers/media/video/gspca/Makefile   |2 
 linux/drivers/media/video/gspca/gspca.c|4 
 linux/drivers/media/video/gspca/zc3xx.c|2 
 6 files changed, 1828 insertions(+), 3 deletions(-)

Thanks.

-- 
Ken ar c'hentañ | ** Breizh ha Linux atav! **
Jef |   http://moinejf.free.fr/
--
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  http://vger.kernel.org/majordomo-info.html


Re: [PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2009-04-23 Thread Mauro Carvalho Chehab
On Tue, 21 Apr 2009 09:29:39 +0200
Jean-Francois Moine moin...@free.fr wrote:

 Hi Mauro,
 
 Please pull from http://linuxtv.org/hg/~jfrancois/v4l-dvb/
 for:
 
 changeset:   11570:ccddae0f5d8f
 gspca - zc3xx: Bad debug level in i2c_read.
 
 changeset:   11571:c3ae07c7c476
 gspca - tp6800: New subdriver with webcam 06a2:0003.
 
 changeset:   11572:b7b10bc9ad67
 tag: tip
 gspca - main: Version change.
 
 Cheers.
 
Hmm... your tree seems to be empty. Had I already pulled from it?

Cheers,
Mauro
--
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  http://vger.kernel.org/majordomo-info.html


Re: [PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2009-04-23 Thread Jean-Francois Moine
On Thu, 23 Apr 2009 09:43:28 -0300
Mauro Carvalho Chehab mche...@infradead.org wrote:

 On Tue, 21 Apr 2009 09:29:39 +0200
 Jean-Francois Moine moin...@free.fr wrote:
 
  Hi Mauro,
  
  Please pull from http://linuxtv.org/hg/~jfrancois/v4l-dvb/
  for:
  
  changeset:   11570:ccddae0f5d8f
  gspca - zc3xx: Bad debug level in i2c_read.
  
  changeset:   11571:c3ae07c7c476
  gspca - tp6800: New subdriver with webcam 06a2:0003.
  
  changeset:   11572:b7b10bc9ad67
  tag: tip
  gspca - main: Version change.
  
  Cheers.
  
 Hmm... your tree seems to be empty. Had I already pulled from it?
 
 Cheers,
 Mauro

Oops, I forgot to do the push! Here it is.

Thanks.

-- 
Ken ar c'hentañ | ** Breizh ha Linux atav! **
Jef |   http://moinejf.free.fr/
--
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  http://vger.kernel.org/majordomo-info.html


Re: [PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2009-04-23 Thread Mauro Carvalho Chehab
On Thu, 23 Apr 2009 14:43:37 +0200
Jean-Francois Moine moin...@free.fr wrote:

 On Thu, 23 Apr 2009 09:43:28 -0300
 Mauro Carvalho Chehab mche...@infradead.org wrote:
 
  On Tue, 21 Apr 2009 09:29:39 +0200
  Jean-Francois Moine moin...@free.fr wrote:
  
   Hi Mauro,
   
   Please pull from http://linuxtv.org/hg/~jfrancois/v4l-dvb/
   for:
   
   changeset:   11570:ccddae0f5d8f
   gspca - zc3xx: Bad debug level in i2c_read.
   
   changeset:   11571:c3ae07c7c476
   gspca - tp6800: New subdriver with webcam 06a2:0003.

+   .sizeimage = 320 * 240 + 590,

Hmm... this looks weird! Why do you need to add 590 bytes here?


Cheers,
Mauro
--
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  http://vger.kernel.org/majordomo-info.html


Re: [PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2009-04-23 Thread Jean-Francois Moine
On Thu, 23 Apr 2009 10:19:48 -0300
Mauro Carvalho Chehab mche...@infradead.org wrote:


changeset:   11571:c3ae07c7c476
gspca - tp6800: New subdriver with webcam 06a2:0003.
 
 +   .sizeimage = 320 * 240 + 590,
 
 Hmm... this looks weird! Why do you need to add 590 bytes here?

Yes, there are problems in this driver, but it is working!

Anders, may you change the 'sizeimage's to:
.sizeimage = 320 * 240 * 3 / 8 + 590,
and
.sizeimage = 640 * 480 * 3 / 8 + 590,

Cheers.

-- 
Ken ar c'hentañ | ** Breizh ha Linux atav! **
Jef |   http://moinejf.free.fr/
--
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  http://vger.kernel.org/majordomo-info.html


[PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2009-04-21 Thread Jean-Francois Moine
Hi Mauro,

Please pull from http://linuxtv.org/hg/~jfrancois/v4l-dvb/
for:

changeset:   11570:ccddae0f5d8f
gspca - zc3xx: Bad debug level in i2c_read.

changeset:   11571:c3ae07c7c476
gspca - tp6800: New subdriver with webcam 06a2:0003.

changeset:   11572:b7b10bc9ad67
tag: tip
gspca - main: Version change.

Cheers.

-- 
Ken ar c'hentañ | ** Breizh ha Linux atav! **
Jef |   http://moinejf.free.fr/
--
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  http://vger.kernel.org/majordomo-info.html


[PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2009-04-18 Thread Jean-Francois Moine
Hi Mauro,

Please pull from http://linuxtv.org/hg/~jfrancois/v4l-dvb/
for:

changeset:   11517:bd3148610922
gspca - m5602-po1030: Remove redundant init sequences

changeset:   11518:6da2047440f0
gspca - m5602-ov9650: Add auto exposure ctrl

changeset:   11519:11e175efd506
gspca - m5602-po1030: Add auto exposure control

changeset:   11520:c19cc928da00
gspca - m5602-po1030: Add private green balance control

changeset:   11521:1c0f5f4d4108
gspca - m5602-mt9m111: Add green balance ctrl

changeset:   11522:2f3f8425c065
gspca - m5602-mt9m111: Add blue balance ctrl

changeset:   11523:1cdcb295fca5
gspca - m5602-mt9m111: Add red balance ctrl

changeset:   11524:7ff93cf873c0
gspca - m5602-s5k4aa: Try to use proper read-modify-write of the vflip/hflip

changeset:   11525:7230e56ef771
gspca - m5602-s5k4aa: Consolidate the gain settings, adjust row start

changeset:   11526:b1ddd4d37a07
gspca - m5602-s5k4aa: Add noise suppression ctrl

changeset:   11527:882707571f8b
gspca - m5602-s5k4aa: Add brightness v4l2 ctrl

changeset:   11528:3643a5689b94
gspca - m5602-po1030: Clean up some comments

changeset:   11529:a8f671ebba31
gspca - m5602-po1030: Move some code from the start vector to the init vector

changeset:   11530:4b88c7a40989
gspca - m5602-po1030: Setup window per resolution

changeset:   11531:ca057bd9495f
gspca - m5602-po1030: Synthesize the hsync/vsync setup

changeset:   11532:77d7a7dc3be2
gspca - m5602-po1030: Add experimental QVGA support

changeset:   11533:1b2da6ca6a18
gspca - m5602-po1030: Impove the bridge vsync/hsync configuration

changeset:   11534:47952d365ff6
gspca - m5602-po1030: Clear subsampling flag when setting VGA mode

changeset:   11535:416e8f56ca59
gscpa - m5602-ov9650: Add defines for some magic constants

changeset:   11536:b539022b8e4b
gspca - m5602-ov9650: Be more strict during the hsync/vsync synthesis

changeset:   11537:838481c4968c
gspca - m5602-mt9m111: Replace magic constants with defines

changeset:   11538:7ddb52c21f00
gspca - m5602-mt9m111: Add a start function

changeset:   11539:b5a4ce975018
gspca - m5602-mt9m111: Synthesize the hsync/vsync setup

changeset:   11540:7f0e97fed800
gspca - m5602-mt9m111: Setup VGA resolution

changeset:   11541:a10fed9aa479
gspca - m5602-mt9m111: Add experimental QVGA support

changeset:   11542:9c88b25eb73a
gspca - m5602-mt9m111: Activate vflip/hflip by default

changeset:   11543:a10797581025
gspca - m5602-mt9m111: Endianness fixes.

changeset:   11544:70683ced4534
gspca - m5602-s5k83a: Align the v4l2 ctrl definitions

changeset:   11545:bd885510ad3d
gspca - m5602-s5k83a: No need to initialize some registers in init

changeset:   11546:b82839b37df1
gspca - m5602-s5k83a: Remove lots of useless init

Cheers.

-- 
Ken ar c'hentañ | ** Breizh ha Linux atav! **
Jef |   http://moinejf.free.fr/
--
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  http://vger.kernel.org/majordomo-info.html


[PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2009-04-07 Thread Jean-Francois Moine
Hi Mauro,

Please pull from http://linuxtv.org/hg/~jfrancois/v4l-dvb/
for:

changeset:   11423:89ed21b68f44
gspca - t613: Do sensor reset only for sensor om6802.

changeset:   11424:76a9121958e1
gspca - mr97310a: Return good error code in mod_init.

changeset:   11425:167e34fc7c99
gspca - main: Use usb interface as parent.

changeset:   11426:b9d34b2862da
gspca - zc3xx: Bad probe of many webcams since adcm2700 addition.

changeset:   11427:2962ff4ab10f
gspca - m5602-mt9m111: Convert the mt9m111 to use a v4l2 ctrl cache

changeset:   11428:52c95bb0d050
gspca - m5602-s5k83a: Add rotation, ctrl cache. Rename some ctrls.

changeset:   11429:82f6bfcbb270
gspca - m5602-po1030: Convert to have a v4l2 ctrl cache

changeset:   11430:3f9fc876da03
gspca - m5602-s5k4aa: Convert to use the v4l2 ctrl cache

changeset:   11431:e1c71183b773
gspca - m5602-mt9m111: Remove the unused power_down struct member

changeset:   11432:86e200613a64
gspca - m5602-ov9650: Improve the vflip quirk handling.

changeset:   11433:22def28d4121
gspca - m5602-po1030: Rename register defines, add missing ones.

changeset:   11434:415aca582f87
gspca - m5602-po1030: Simplify register defines

changeset:   11435:35829089cfbc
gspca - m5602-po1030: Set all v4l2 controls at sensor init

changeset:   11436:dba0356a9afc
gspca - m5602-po1030: Add auto white balancing control

changeset:   11437:6732855e2f34
gspca - m5602-po1030: Remove unnecessary error check

changeset:   11438:572d059c7923
gspca - m5602-po1030: Probe read only register at probe time

changeset:   11439:139f4c219762
gspca - m5602-po1030: Split up the init into init and start

changeset:   11440:6a48dfe848d0
gspca - m5602-po1030: Remove unneeded init sequences

changeset:   11441:1c7f4d480ce1
gspca - m5602-mt9m111: Set the cached v4l2 ctrl values

changeset:   11442:16029093f604
gspca - m5602-s5k4aa: Set all v4l2 ctrls on sensor init.

changeset:   11443:dfc66c5b9a94
gspca - m5602: Let all ctrls on all sensors be static

changeset:   11444:9d589114fbfd
gspca - m5602: Move all dump_sensor to the init function

changeset:   11445:bbc36950cdab
gspca - m5602-mt9m111: Remove redundant init sequences

changeset:   11446:e32daed9f3b1
gspca - m5602-mt9m111: More redundant init cleanup

changeset:   11447:267615fea4b3
gspca - m5602-mt9m111: Implement an auto white balancing control

changeset:   11448:fd5a12cf094f
gspca - m5602-mt9m111: Remove more redundant init

changeset:   11449:743a9416b896
gspca - m5602-mt9m111: Remove lots of redundant init code

changeset:   11450:8df13edfaa7d
gspca - m5602-po1030: Release reset when init is done.

changeset:   11451:ef21e760a731
gspca - m5602-po1030: Fix sensor probing.

changeset:   11452:3f480f9375e3
gspca - m5602-po1030: Lower the default blue and gain balance

changeset:   11453:848a0681e66a
gspca - m5602: Add some more register defines

changeset:   11454:aed40a914a7c
gspca - m5602-po1030: Set the blue balance in the init not red balance twice

changeset:   11455:061ee364cbbd
gspca - m5602-mt9m111: Replace various magic constants with defines

changeset:   11456:0b1998e76cb8
gspca - m5602-mt9m111: More magic constants replacement

changeset:   11457:717e661628d1
gspca - m5602-mt9m111: Remove lots of redundant sensor reads

changeset:   11458:2d4c41cc9b6e
gspca - m5602-mt9m111: More constant replacement

changeset:   11459:3055659c9940
gspca - m5602-mt9m111: Remove lots of redundant init code

changeset:   11460:b0d269f96d1d
gspca - mr97310a: Webcam 093a:010f added.

Cheers.

-- 
Ken ar c'hentañ | ** Breizh ha Linux atav! **
Jef |   http://moinejf.free.fr/
--
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  http://vger.kernel.org/majordomo-info.html


[PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2009-04-05 Thread Jean-Francois Moine
Hi Mauro,

Here is my previous pull request.

Please pull from http://linuxtv.org/hg/~jfrancois/v4l-dvb/
for:

changeset:   11224:2258bd92f522
gspca - vc032x: Remove the JPEG tables of mi1320_soc.

changeset:   11225:ea6d8f0cd083
gspca - m5602-s5k4aa: No more default mode

changeset:   11226:630fa8f75f42
gspca - m5602-s5k4aa: Add start function and VGA resolution init.

changeset:   11227:7b14d00aa61c
gspca - m5602: Simplify error handling

changeset:   11228:89647a4acf75
gspca - m5602-ov9650: Add QCIF resolution support

changeset:   11229:7578294f06cd
gspca - m5602-ov9650: Clean up ov9650_start() function.

changeset:   11230:8863f4fdf25e
gspca - m5602-s5k83a: Add led support to the s5k83a sensor.

changeset:   11231:817e36da4fd9
gspca - m5602-ov9650: Set the ov9650 sensor in soft sleep when inactive.

changeset:   11232:9d0a113a28a4
gspca - m5602-ov9650: Always init the ov9650 before starting a stream

changeset:   11233:871b2546315d
gspca - m5602: Rework v4l ctrl handling in all sensors

changeset:   11234:04c1227d412f
gspca - m5602-ov9650: Checkpatch fixes

changeset:   11235:089b896afa94
gspca - m5602-mt9m111: Separate mode vectors per sensor.

changeset:   11236:531f8383ff70
gspca - m5602-mt9m111: Move v4l2 controls to main sensor file.

changeset:   11237:ea5335dfb00e
gspca - m5602: Remove an unused member in the sd struct.

changeset:   11238:f915d64a686e
gspca - m5602: Constify all sensor structs

changeset:   11239:be006d6783fb
gspca - m5602-ov9650: Autogain is on by default

changeset:   11240:ad9622150aea
gspca - m5602-ov9650: Auto white balancing is on by default

changeset:   11241:82263c1cbdee
gspca - m5602-ov9650: Don't read exposure data from COM1.

changeset:   11242:a640fe97ac35
gspca - m5602: Improve error handling in the ov9650 driver

changeset:   11243:9d70484bfca5
gspca - m5602-ov9650: Synthesize modesetting.

changeset:   11244:dc66997ccf36
gspca - m5602-ov9650: Replace a magic constant with a define

changeset:   11245:ecbaf91c8745
gspca - m5602-ov9650: Add a disconnect hook, setup a ctrl cache ctrl.

changeset:   11246:0310786ebedc
gspca - m5602-ov9650: Use the local ctrl cache. Adjust image on vflip.

changeset:   11247:1bebd29cecc3
gspca - m5602: Move the vflip quirk to probe stage.

changeset:   11248:6b4f4f173a66
gspca - m5602: Don't touch hflip/vflip register on Read/Modify/Write

changeset:   11249:7c1aa8d0507f
gspca - m5602: Minor cleanups

Cheers.

-- 
Ken ar c'hentañ | ** Breizh ha Linux atav! **
Jef |   http://moinejf.free.fr/
--
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  http://vger.kernel.org/majordomo-info.html


[PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2009-03-27 Thread Jean-Francois Moine
Hi Mauro,

Please pull from http://linuxtv.org/hg/~jfrancois/v4l-dvb/
for:

changeset:   11224:2258bd92f522
gspca - vc032x: Remove the JPEG tables of mi1320_soc.

changeset:   11225:ea6d8f0cd083
gspca - m5602-s5k4aa: No more default mode

changeset:   11226:630fa8f75f42
gspca - m5602-s5k4aa: Add start function and VGA resolution init.

changeset:   11227:7b14d00aa61c
gspca - m5602: Simplify error handling

changeset:   11228:89647a4acf75
gspca - m5602-ov9650: Add QCIF resolution support

changeset:   11229:7578294f06cd
gspca - m5602-ov9650: Clean up ov9650_start() function.

changeset:   11230:8863f4fdf25e
gspca - m5602-s5k83a: Add led support to the s5k83a sensor.

changeset:   11231:817e36da4fd9
gspca - m5602-ov9650: Set the ov9650 sensor in soft sleep when inactive.

changeset:   11232:9d0a113a28a4
gspca - m5602-ov9650: Always init the ov9650 before starting a stream

changeset:   11233:871b2546315d
gspca - m5602: Rework v4l ctrl handling in all sensors

changeset:   11234:04c1227d412f
gspca - m5602-ov9650: Checkpatch fixes

changeset:   11235:089b896afa94
gspca - m5602-mt9m111: Separate mode vectors per sensor.

changeset:   11236:531f8383ff70
gspca - m5602-mt9m111: Move v4l2 controls to main sensor file.

changeset:   11237:ea5335dfb00e
gspca - m5602: Remove an unused member in the sd struct.

changeset:   11238:f915d64a686e
gspca - m5602: Constify all sensor structs

changeset:   11239:be006d6783fb
gspca - m5602-ov9650: Autogain is on by default

changeset:   11240:ad9622150aea
gspca - m5602-ov9650: Auto white balancing is on by default

changeset:   11241:82263c1cbdee
gspca - m5602-ov9650: Don't read exposure data from COM1.

changeset:   11242:a640fe97ac35
gspca - m5602: Improve error handling in the ov9650 driver

changeset:   11243:9d70484bfca5
gspca - m5602-ov9650: Synthesize modesetting.

changeset:   11244:dc66997ccf36
gspca - m5602-ov9650: Replace a magic constant with a define

changeset:   11245:ecbaf91c8745
gspca - m5602-ov9650: Add a disconnect hook, setup a ctrl cache ctrl.

changeset:   11246:0310786ebedc
gspca - m5602-ov9650: Use the local ctrl cache. Adjust image on vflip.

changeset:   11247:1bebd29cecc3
gspca - m5602: Move the vflip quirk to probe stage.

changeset:   11248:6b4f4f173a66
gspca - m5602: Don't touch hflip/vflip register on Read/Modify/Write

changeset:   11249:7c1aa8d0507f
gspca - m5602: Minor cleanups

Cheers.

-- 
Ken ar c'hentañ | ** Breizh ha Linux atav! **
Jef |   http://moinejf.free.fr/
--
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  http://vger.kernel.org/majordomo-info.html


Re: [PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2009-03-25 Thread Mauro Carvalho Chehab
On Wed, 25 Mar 2009 11:19:42 +0100
Jean-Francois Moine moin...@free.fr wrote:

 Hi Mauro,
 
 Please pull from http://linuxtv.org/hg/~jfrancois/v4l-dvb/
 for:
 
 changeset:   11141:8f6800be5b0f
 gspca - vc032x: New sensor mi1320_soc and webcam 15b8:6001 added.
 
 changeset:   11156:fb4ba7eaa8b0
 gspca - vc032x: Simplify the i2c write function.
 
 changeset:   11157:01ea4082081f
 gspca - vc032x: Use YVYU format for sensor mi1320_soc.

There's a small typo on this patch:

+/*fixme: jeg does not work

s/jeg/jpeg/

Btw, It would be better if you use:

#if 0
/* the jpeg code that doesn't work yet */
...
#endif

The advantages are that the #if 0 would be stripped from kernel. Also, this is
the common way for adding code that aren't working yet.

If you want to keep the comments upstream, you can use, instead:

#if 0 /* keep */
/* the jpeg code that doesn't work yet */
...
#endif

Cheers,
Mauro
--
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  http://vger.kernel.org/majordomo-info.html


[PULL] http://linuxtv.org/hg/~jfrancois/v4l-dvb/

2009-03-23 Thread Jean-Francois Moine
Hi Mauro,

Please pull from http://linuxtv.org/hg/~jfrancois/v4l-dvb/
for:

changeset:   11131:34b88f4b00ad
gspca - t613: Bad sensor detection.

changeset:   11132:31f222cd683a
gspca - t613: Don't re-read the ID registers at probe time.

changeset:   11133:0b9ac61f6162
gspca - t613: Greater delay after om6802 reset.

changeset:   11134:501bc0c35ca9
gspca - vc032x: Change the probe sequence.

changeset:   11141:8f6800be5b0f
gspca - vc032x: New sensor mi1320_soc and webcam 15b8:6001 added.

Cheers.

-- 
Ken ar c'hentañ | ** Breizh ha Linux atav! **
Jef |   http://moinejf.free.fr/
--
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  http://vger.kernel.org/majordomo-info.html