Re: [GIT PATCHES FOR 2.6.34] gspca development

2010-03-18 Thread Mauro Carvalho Chehab
Jean-Francois Moine wrote:
> Hi Mauro,
> 
> The following changes since commit
> 942ab4762505a51a7a433a7608ba5d3eed6e4f8b: Jean Delvare (1):
> V4L/DVB: saa7134: Fix IR support of some ASUS TV-FM 7135
> variants
> 
> are available in the git repository at:
> 
>   git://linuxtv.org/jfrancois/gspca.git for_2.6.34

Applied, thanks. Please, next time, base your fixes patches on fixes.git tree.

-- 

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


[GIT PATCHES FOR 2.6.34] gspca development

2010-03-15 Thread Jean-Francois Moine
Hi Mauro,

The following changes since commit 942ab4762505a51a7a433a7608ba5d3eed6e4f8b:
  Jean Delvare (1):
V4L/DVB: saa7134: Fix IR support of some ASUS TV-FM 7135 variants

are available in the git repository at:

  git://linuxtv.org/jfrancois/gspca.git for_2.6.35

Olivier Lorin (2):
  gspca - gl860: Updates to prepare the new driver for MI2020 sensor.
  gspca - gl860: New driver for MI2020 sensor.

 drivers/media/video/gspca/gl860/gl860-mi1320.c |1 +
 drivers/media/video/gspca/gl860/gl860-mi2020.c |  731 +---
 drivers/media/video/gspca/gl860/gl860-ov2640.c |1 +
 drivers/media/video/gspca/gl860/gl860-ov9655.c |5 +-
 drivers/media/video/gspca/gl860/gl860.c|   52 +--
 drivers/media/video/gspca/gl860/gl860.h|6 +-
 6 files changed, 288 insertions(+), 508 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


[GIT PATCHES FOR 2.6.34] gspca development

2010-03-15 Thread Jean-Francois Moine
Hi Mauro,

The following changes since commit
942ab4762505a51a7a433a7608ba5d3eed6e4f8b: Jean Delvare (1):
V4L/DVB: saa7134: Fix IR support of some ASUS TV-FM 7135
variants

are available in the git repository at:

  git://linuxtv.org/jfrancois/gspca.git for_2.6.34

Erik Andrén (1):
  gspca - stv06xx: Remove the 046d:08da from the stv06xx driver.

Yong Zhang (1):
  gspca - sn9c20x: Correct onstack wait_queue_head declaration.

 drivers/media/video/gspca/sn9c20x.c |2 +-
 drivers/media/video/gspca/stv06xx/stv06xx.c |2 --
 2 files changed, 1 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: [GIT PATCHES FOR 2.6.34] gspca development

2010-03-14 Thread Mauro Carvalho Chehab
Hi Jean,

It seems that some of the patches are for 2.6.34 and some for 2.6.35 (changes 
of an
existing driver in preparation for a new driver should be added during a merge 
window). 

Could you please break them into two separate pull requests? The patches for 
2.6.34 will
be added at the fixes.git tree, while the others will go to the v4l-dvb.git 
tree.

Jean-Francois Moine wrote:
> The following changes since commit
> ac8b45fc29b7dc4837c9b541033b62305fdccb85: Max Thrun (1):
> V4L/DVB: gspca - ov534: Update copyright info
> 
> are available in the git repository at:
> 
>   git://linuxtv.org/jfrancois/gspca.git devel
> 
> Erik Andrén (1):
>   gspca - stv06xx: Remove the 046d:08da from the stv06xx driver.

OK for 2.6.34.
> 
> Olivier Lorin (2):
>   gspca - gl860: Updates to prepare the new driver for MI2020 sensor.

Better to delay to 2.6.35, since this changes the behavior of the driver.

- General changes for all drivers because of new MI2020 sensor driver :
  - add the light source control
  - control value changes only applied after an end of image
  - replace msleep with duration less than 5 ms by a busy loop
- Fix for an irrelevant OV9655 image resolution identifier name

The better is to break it into 4 patches (one for each different logical 
change).

In the case of this change:
  - replace msleep with duration less than 5 ms by a busy loop

Keeping the cpu hold for 5 ms is not a good idea, except if you have a
reason for doing that. Long delays will spend more power, and will keep
cpu running during all the time the delay will happen. That's why mdelay()
is used only in the cases where the delay timing is critical. 

In this case, you should write a separate patch with this change, clearly 
stating why this is needed. 

Also, if this change is needed just because mi2020 driver, you shouldn't be
applying penalty to users with other sensors.

>   gspca - gl860: New driver for MI2020 sensor.

Better to delay to 2.6.35, since this changes the behavior of the driver.

> 
> Yong Zhang (1):
>   gspca - sn9c20x: Correct onstack wait_queue_head declaration.

OK for 2.6.34.

-- 

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


[GIT PATCHES FOR 2.6.34] gspca development

2010-03-11 Thread Jean-Francois Moine
The following changes since commit
ac8b45fc29b7dc4837c9b541033b62305fdccb85: Max Thrun (1):
V4L/DVB: gspca - ov534: Update copyright info

are available in the git repository at:

  git://linuxtv.org/jfrancois/gspca.git devel

Erik Andrén (1):
  gspca - stv06xx: Remove the 046d:08da from the stv06xx driver.

Olivier Lorin (2):
  gspca - gl860: Updates to prepare the new driver for MI2020 sensor.
  gspca - gl860: New driver for MI2020 sensor.

Yong Zhang (1):
  gspca - sn9c20x: Correct onstack wait_queue_head declaration.

 drivers/media/video/gspca/gl860/gl860-mi1320.c |1 +
 drivers/media/video/gspca/gl860/gl860-mi2020.c |  731 +---
 drivers/media/video/gspca/gl860/gl860-ov2640.c |1 +
 drivers/media/video/gspca/gl860/gl860-ov9655.c |5 +-
 drivers/media/video/gspca/gl860/gl860.c|   52 +--
 drivers/media/video/gspca/gl860/gl860.h|6 +-
 drivers/media/video/gspca/sn9c20x.c|2 +-
 drivers/media/video/gspca/stv06xx/stv06xx.c|2 -
 8 files changed, 289 insertions(+), 511 deletions(-)

-- 
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


[GIT PATCHES FOR 2.6.34] gspca development

2010-03-10 Thread Jean-Francois Moine
The following changes since commit
2dfbaca5d9d30ad330351c715193c6e8407908a5: Abylay Ospan (1):
V4L/DVB: Allow to enable TS continuity and TEI check on loaded
module

are available in the git repository at:

  git://linuxtv.org/jfrancois/gspca.git devel

Antonio Ospite (3):
  gspca - ov534: Remove hue control.
  gspca - ov534: Fix and document setting manual exposure
  gspca - ov534: Cosmetics: fix indentation and hex digits

Max Thrun (7):
  gspca- ov534: Remove ambiguous controls.
  gspca - ov534: Fix autogain control, enable it by default
  gspca - ov534: Add Auto Exposure
  gspca - ov534: Fix Auto White Balance control
  gspca - ov534: Fixes for sharpness control
  gspca - ov534: Fix unsetting hflip and vflip bits
  gspca - ov534: Update copyright info

Mosalam Ebrahimi (1):
  gspca - ov534: Add Powerline Frequency control

 drivers/media/video/gspca/ov534.c |  563 +++--
 1 files changed, 283 insertions(+), 280 deletions(-)

-- 
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: [GIT PATCHES FOR 2.6.34] gspca development

2010-03-08 Thread Erik Andrén
2010/3/8 Jean-Francois Moine :
> The following changes since commit
> 8c69c6ed6c74c94fa7ad6fa24eda452e4b212d81: Joe Perches (1):
>        V4L/DVB: MAINTAINERS: Telegent tlg2300 section fix
>
> are available in the git repository at:
>
>  git://linuxtv.org/jfrancois/gspca.git devel
>
> Erik Andrén (1):
>      gspca - pac207: Let all pac207 ctrls have a coherent naming.
>

Heh, I thought this patch had gone missing in cyber space a long time ago. :)
Great that you found and pushed it!

Best regards,
Erik


> German Galkin (1):
>      gspca - sn9c20x: Fix exposure control for HV7131R sensor.
>
> Jean-François Moine (2):
>      gspca - t613: Check the result of kmalloc.
>      gspca - cpia1 / sn9c2028: Make control descriptors constant.
>
> Paulo Assis (1):
>      gspca - main: Use ktime instead of jiffies for buffer timestamping.
>
>  drivers/media/video/gspca/cpia1.c    |    2 +-
>  drivers/media/video/gspca/gspca.c    |    7 +++
>  drivers/media/video/gspca/pac207.c   |    4 ++--
>  drivers/media/video/gspca/sn9c2028.c |    2 +-
>  drivers/media/video/gspca/sn9c20x.c  |    6 +++---
>  drivers/media/video/gspca/t613.c     |   13 +++--
>  6 files changed, 21 insertions(+), 13 deletions(-)
>
> --
> 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
>
--
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


[GIT PATCHES FOR 2.6.34] gspca development

2010-03-07 Thread Jean-Francois Moine
The following changes since commit
8c69c6ed6c74c94fa7ad6fa24eda452e4b212d81: Joe Perches (1):
V4L/DVB: MAINTAINERS: Telegent tlg2300 section fix

are available in the git repository at:

  git://linuxtv.org/jfrancois/gspca.git devel

Erik Andrén (1):
  gspca - pac207: Let all pac207 ctrls have a coherent naming.

German Galkin (1):
  gspca - sn9c20x: Fix exposure control for HV7131R sensor.

Jean-François Moine (2):
  gspca - t613: Check the result of kmalloc.
  gspca - cpia1 / sn9c2028: Make control descriptors constant.

Paulo Assis (1):
  gspca - main: Use ktime instead of jiffies for buffer timestamping.

 drivers/media/video/gspca/cpia1.c|2 +-
 drivers/media/video/gspca/gspca.c|7 +++
 drivers/media/video/gspca/pac207.c   |4 ++--
 drivers/media/video/gspca/sn9c2028.c |2 +-
 drivers/media/video/gspca/sn9c20x.c  |6 +++---
 drivers/media/video/gspca/t613.c |   13 +++--
 6 files changed, 21 insertions(+), 13 deletions(-)

-- 
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