All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] media: Add SH-Mobile RCAR-H2 Lager board support
@ 2013-09-24 13:38 Valentine Barshak
  2013-09-24 16:14 ` Guennadi Liakhovetski
  2013-11-11 23:42   ` Laurent Pinchart
  0 siblings, 2 replies; 12+ messages in thread
From: Valentine Barshak @ 2013-09-24 13:38 UTC (permalink / raw)
  To: linux-sh

The following patches add ADV7611/ADV7612 HDMI receiver I2C driver
and add RCAR H2 SOC support along with ADV761x output format support
to rcar_vin soc_camera driver.

These changes are needed for SH-Mobile R8A7790 Lager board
video input support.

Valentine Barshak (3):
  media: i2c: Add ADV761X support
  media: rcar_vin: Add preliminary r8a7790 H2 support
  media: rcar_vin: Add RGB888_1X24 input format support

 drivers/media/i2c/Kconfig                    |   11 +
 drivers/media/i2c/Makefile                   |    1 +
 drivers/media/i2c/adv761x.c                  | 1060 ++++++++++++++++++++++++++
 drivers/media/platform/soc_camera/rcar_vin.c |   17 +-
 include/media/adv761x.h                      |   28 +
 5 files changed, 1114 insertions(+), 3 deletions(-)
 create mode 100644 drivers/media/i2c/adv761x.c
 create mode 100644 include/media/adv761x.h

-- 
1.8.3.1


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 0/3] media: Add SH-Mobile RCAR-H2 Lager board support
  2013-09-24 13:38 [PATCH 0/3] media: Add SH-Mobile RCAR-H2 Lager board support Valentine Barshak
@ 2013-09-24 16:14 ` Guennadi Liakhovetski
  2013-10-04 10:13     ` Hans Verkuil
  2013-11-11 23:42   ` Laurent Pinchart
  1 sibling, 1 reply; 12+ messages in thread
From: Guennadi Liakhovetski @ 2013-09-24 16:14 UTC (permalink / raw)
  To: linux-sh

Hi Valentine,

Since patches 2 and 3 here are for soc-camera, I can offer to take all 3 
via my tree after all comments to patch 1/3 are addressed and someone 
(Laurent?) has acked it. Alternatively I can ack the two patches and let 
all 3 go via another tree, or we can split this series too - no problem 
with me either way.

Thanks
Guennadi

On Tue, 24 Sep 2013, Valentine Barshak wrote:

> The following patches add ADV7611/ADV7612 HDMI receiver I2C driver
> and add RCAR H2 SOC support along with ADV761x output format support
> to rcar_vin soc_camera driver.
> 
> These changes are needed for SH-Mobile R8A7790 Lager board
> video input support.
> 
> Valentine Barshak (3):
>   media: i2c: Add ADV761X support
>   media: rcar_vin: Add preliminary r8a7790 H2 support
>   media: rcar_vin: Add RGB888_1X24 input format support
> 
>  drivers/media/i2c/Kconfig                    |   11 +
>  drivers/media/i2c/Makefile                   |    1 +
>  drivers/media/i2c/adv761x.c                  | 1060 ++++++++++++++++++++++++++
>  drivers/media/platform/soc_camera/rcar_vin.c |   17 +-
>  include/media/adv761x.h                      |   28 +
>  5 files changed, 1114 insertions(+), 3 deletions(-)
>  create mode 100644 drivers/media/i2c/adv761x.c
>  create mode 100644 include/media/adv761x.h
> 
> -- 
> 1.8.3.1
> 

---
Guennadi Liakhovetski, Ph.D.
Freelance Open-Source Software Developer
http://www.open-technology.de/

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 0/3] media: Add SH-Mobile RCAR-H2 Lager board support
  2013-09-24 16:14 ` Guennadi Liakhovetski
@ 2013-10-04 10:13     ` Hans Verkuil
  0 siblings, 0 replies; 12+ messages in thread
From: Hans Verkuil @ 2013-10-04 10:13 UTC (permalink / raw)
  To: Guennadi Liakhovetski
  Cc: Valentine Barshak, Linux Media Mailing List, Simon Horman,
	Mauro Carvalho Chehab, Hans Verkuil, Magnus Damm, linux-sh,
	Laurent Pinchart

On 09/24/2013 06:14 PM, Guennadi Liakhovetski wrote:
> Hi Valentine,
> 
> Since patches 2 and 3 here are for soc-camera, I can offer to take all 3 
> via my tree after all comments to patch 1/3 are addressed and someone 
> (Laurent?) has acked it. Alternatively I can ack the two patches and let 
> all 3 go via another tree, or we can split this series too - no problem 
> with me either way.

I prefer to take these patches. 95% of the work is in the first patch adding
the new adv driver, and I'm responsible for video receivers/transmitters.

There is going to be a revision anyway, so let's wait for v2.

Regards,

	Hans

> 
> Thanks
> Guennadi
> 
> On Tue, 24 Sep 2013, Valentine Barshak wrote:
> 
>> The following patches add ADV7611/ADV7612 HDMI receiver I2C driver
>> and add RCAR H2 SOC support along with ADV761x output format support
>> to rcar_vin soc_camera driver.
>>
>> These changes are needed for SH-Mobile R8A7790 Lager board
>> video input support.
>>
>> Valentine Barshak (3):
>>   media: i2c: Add ADV761X support
>>   media: rcar_vin: Add preliminary r8a7790 H2 support
>>   media: rcar_vin: Add RGB888_1X24 input format support
>>
>>  drivers/media/i2c/Kconfig                    |   11 +
>>  drivers/media/i2c/Makefile                   |    1 +
>>  drivers/media/i2c/adv761x.c                  | 1060 ++++++++++++++++++++++++++
>>  drivers/media/platform/soc_camera/rcar_vin.c |   17 +-
>>  include/media/adv761x.h                      |   28 +
>>  5 files changed, 1114 insertions(+), 3 deletions(-)
>>  create mode 100644 drivers/media/i2c/adv761x.c
>>  create mode 100644 include/media/adv761x.h
>>
>> -- 
>> 1.8.3.1
>>
> 
> ---
> Guennadi Liakhovetski, Ph.D.
> Freelance Open-Source Software Developer
> http://www.open-technology.de/
> --
> To unsubscribe from this list: send the line "unsubscribe linux-media" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 0/3] media: Add SH-Mobile RCAR-H2 Lager board support
@ 2013-10-04 10:13     ` Hans Verkuil
  0 siblings, 0 replies; 12+ messages in thread
From: Hans Verkuil @ 2013-10-04 10:13 UTC (permalink / raw)
  To: Guennadi Liakhovetski
  Cc: Valentine Barshak, Linux Media Mailing List, Simon Horman,
	Mauro Carvalho Chehab, Hans Verkuil, Magnus Damm, linux-sh,
	Laurent Pinchart

On 09/24/2013 06:14 PM, Guennadi Liakhovetski wrote:
> Hi Valentine,
> 
> Since patches 2 and 3 here are for soc-camera, I can offer to take all 3 
> via my tree after all comments to patch 1/3 are addressed and someone 
> (Laurent?) has acked it. Alternatively I can ack the two patches and let 
> all 3 go via another tree, or we can split this series too - no problem 
> with me either way.

I prefer to take these patches. 95% of the work is in the first patch adding
the new adv driver, and I'm responsible for video receivers/transmitters.

There is going to be a revision anyway, so let's wait for v2.

Regards,

	Hans

> 
> Thanks
> Guennadi
> 
> On Tue, 24 Sep 2013, Valentine Barshak wrote:
> 
>> The following patches add ADV7611/ADV7612 HDMI receiver I2C driver
>> and add RCAR H2 SOC support along with ADV761x output format support
>> to rcar_vin soc_camera driver.
>>
>> These changes are needed for SH-Mobile R8A7790 Lager board
>> video input support.
>>
>> Valentine Barshak (3):
>>   media: i2c: Add ADV761X support
>>   media: rcar_vin: Add preliminary r8a7790 H2 support
>>   media: rcar_vin: Add RGB888_1X24 input format support
>>
>>  drivers/media/i2c/Kconfig                    |   11 +
>>  drivers/media/i2c/Makefile                   |    1 +
>>  drivers/media/i2c/adv761x.c                  | 1060 ++++++++++++++++++++++++++
>>  drivers/media/platform/soc_camera/rcar_vin.c |   17 +-
>>  include/media/adv761x.h                      |   28 +
>>  5 files changed, 1114 insertions(+), 3 deletions(-)
>>  create mode 100644 drivers/media/i2c/adv761x.c
>>  create mode 100644 include/media/adv761x.h
>>
>> -- 
>> 1.8.3.1
>>
> 
> ---
> Guennadi Liakhovetski, Ph.D.
> Freelance Open-Source Software Developer
> http://www.open-technology.de/
> --
> To unsubscribe from this list: send the line "unsubscribe linux-media" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 0/3] media: Add SH-Mobile RCAR-H2 Lager board support
  2013-10-04 10:13     ` Hans Verkuil
@ 2013-10-04 14:19       ` Valentine
  -1 siblings, 0 replies; 12+ messages in thread
From: Valentine @ 2013-10-04 14:19 UTC (permalink / raw)
  To: Hans Verkuil
  Cc: Guennadi Liakhovetski, Linux Media Mailing List, Simon Horman,
	Mauro Carvalho Chehab, Hans Verkuil, Magnus Damm, linux-sh,
	Laurent Pinchart

On 10/04/2013 02:13 PM, Hans Verkuil wrote:
> On 09/24/2013 06:14 PM, Guennadi Liakhovetski wrote:
>> Hi Valentine,

Hi,

>>
>> Since patches 2 and 3 here are for soc-camera, I can offer to take all 3
>> via my tree after all comments to patch 1/3 are addressed and someone
>> (Laurent?) has acked it. Alternatively I can ack the two patches and let
>> all 3 go via another tree, or we can split this series too - no problem
>> with me either way.
>
> I prefer to take these patches. 95% of the work is in the first patch adding
> the new adv driver, and I'm responsible for video receivers/transmitters.
>
> There is going to be a revision anyway, so let's wait for v2.

Patch 2 doesn't really depend on the other ones.
So I think it can be added separately.
I'll resubmit it in a bit.

The ADV related stuff will be reworked/submitted later.

>
> Regards,
>
> 	Hans

Thanks,
Val.
>
>>
>> Thanks
>> Guennadi
>>
>> On Tue, 24 Sep 2013, Valentine Barshak wrote:
>>
>>> The following patches add ADV7611/ADV7612 HDMI receiver I2C driver
>>> and add RCAR H2 SOC support along with ADV761x output format support
>>> to rcar_vin soc_camera driver.
>>>
>>> These changes are needed for SH-Mobile R8A7790 Lager board
>>> video input support.
>>>
>>> Valentine Barshak (3):
>>>    media: i2c: Add ADV761X support
>>>    media: rcar_vin: Add preliminary r8a7790 H2 support
>>>    media: rcar_vin: Add RGB888_1X24 input format support
>>>
>>>   drivers/media/i2c/Kconfig                    |   11 +
>>>   drivers/media/i2c/Makefile                   |    1 +
>>>   drivers/media/i2c/adv761x.c                  | 1060 ++++++++++++++++++++++++++
>>>   drivers/media/platform/soc_camera/rcar_vin.c |   17 +-
>>>   include/media/adv761x.h                      |   28 +
>>>   5 files changed, 1114 insertions(+), 3 deletions(-)
>>>   create mode 100644 drivers/media/i2c/adv761x.c
>>>   create mode 100644 include/media/adv761x.h
>>>
>>> --
>>> 1.8.3.1
>>>
>>
>> ---
>> Guennadi Liakhovetski, Ph.D.
>> Freelance Open-Source Software Developer
>> http://www.open-technology.de/
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-media" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>>
>


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 0/3] media: Add SH-Mobile RCAR-H2 Lager board support
@ 2013-10-04 14:19       ` Valentine
  0 siblings, 0 replies; 12+ messages in thread
From: Valentine @ 2013-10-04 14:19 UTC (permalink / raw)
  To: Hans Verkuil
  Cc: Guennadi Liakhovetski, Linux Media Mailing List, Simon Horman,
	Mauro Carvalho Chehab, Hans Verkuil, Magnus Damm, linux-sh,
	Laurent Pinchart

On 10/04/2013 02:13 PM, Hans Verkuil wrote:
> On 09/24/2013 06:14 PM, Guennadi Liakhovetski wrote:
>> Hi Valentine,

Hi,

>>
>> Since patches 2 and 3 here are for soc-camera, I can offer to take all 3
>> via my tree after all comments to patch 1/3 are addressed and someone
>> (Laurent?) has acked it. Alternatively I can ack the two patches and let
>> all 3 go via another tree, or we can split this series too - no problem
>> with me either way.
>
> I prefer to take these patches. 95% of the work is in the first patch adding
> the new adv driver, and I'm responsible for video receivers/transmitters.
>
> There is going to be a revision anyway, so let's wait for v2.

Patch 2 doesn't really depend on the other ones.
So I think it can be added separately.
I'll resubmit it in a bit.

The ADV related stuff will be reworked/submitted later.

>
> Regards,
>
> 	Hans

Thanks,
Val.
>
>>
>> Thanks
>> Guennadi
>>
>> On Tue, 24 Sep 2013, Valentine Barshak wrote:
>>
>>> The following patches add ADV7611/ADV7612 HDMI receiver I2C driver
>>> and add RCAR H2 SOC support along with ADV761x output format support
>>> to rcar_vin soc_camera driver.
>>>
>>> These changes are needed for SH-Mobile R8A7790 Lager board
>>> video input support.
>>>
>>> Valentine Barshak (3):
>>>    media: i2c: Add ADV761X support
>>>    media: rcar_vin: Add preliminary r8a7790 H2 support
>>>    media: rcar_vin: Add RGB888_1X24 input format support
>>>
>>>   drivers/media/i2c/Kconfig                    |   11 +
>>>   drivers/media/i2c/Makefile                   |    1 +
>>>   drivers/media/i2c/adv761x.c                  | 1060 ++++++++++++++++++++++++++
>>>   drivers/media/platform/soc_camera/rcar_vin.c |   17 +-
>>>   include/media/adv761x.h                      |   28 +
>>>   5 files changed, 1114 insertions(+), 3 deletions(-)
>>>   create mode 100644 drivers/media/i2c/adv761x.c
>>>   create mode 100644 include/media/adv761x.h
>>>
>>> --
>>> 1.8.3.1
>>>
>>
>> ---
>> Guennadi Liakhovetski, Ph.D.
>> Freelance Open-Source Software Developer
>> http://www.open-technology.de/
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-media" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>>
>


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 0/3] media: Add SH-Mobile RCAR-H2 Lager board support
  2013-09-24 13:38 [PATCH 0/3] media: Add SH-Mobile RCAR-H2 Lager board support Valentine Barshak
@ 2013-11-11 23:42   ` Laurent Pinchart
  2013-11-11 23:42   ` Laurent Pinchart
  1 sibling, 0 replies; 12+ messages in thread
From: Laurent Pinchart @ 2013-11-11 23:42 UTC (permalink / raw)
  To: Valentine Barshak
  Cc: linux-media, Simon Horman, Mauro Carvalho Chehab,
	Guennadi Liakhovetski, Hans Verkuil, Magnus Damm, linux-sh

Hi Valentine,

On Tuesday 24 September 2013 17:38:33 Valentine Barshak wrote:
> The following patches add ADV7611/ADV7612 HDMI receiver I2C driver
> and add RCAR H2 SOC support along with ADV761x output format support
> to rcar_vin soc_camera driver.
> 
> These changes are needed for SH-Mobile R8A7790 Lager board
> video input support.

Do you plan to submit a v2 ? I need the ADV761x driver pretty soon and I'd 
like to avoid submitting a competing patch :-)

> Valentine Barshak (3):
>   media: i2c: Add ADV761X support
>   media: rcar_vin: Add preliminary r8a7790 H2 support
>   media: rcar_vin: Add RGB888_1X24 input format support
> 
>  drivers/media/i2c/Kconfig                    |   11 +
>  drivers/media/i2c/Makefile                   |    1 +
>  drivers/media/i2c/adv761x.c                  | 1060 +++++++++++++++++++++++
>  drivers/media/platform/soc_camera/rcar_vin.c |   17 +-
>  include/media/adv761x.h                      |   28 +
>  5 files changed, 1114 insertions(+), 3 deletions(-)
>  create mode 100644 drivers/media/i2c/adv761x.c
>  create mode 100644 include/media/adv761x.h
-- 
Regards,

Laurent Pinchart


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 0/3] media: Add SH-Mobile RCAR-H2 Lager board support
@ 2013-11-11 23:42   ` Laurent Pinchart
  0 siblings, 0 replies; 12+ messages in thread
From: Laurent Pinchart @ 2013-11-11 23:42 UTC (permalink / raw)
  To: Valentine Barshak
  Cc: linux-media, Simon Horman, Mauro Carvalho Chehab,
	Guennadi Liakhovetski, Hans Verkuil, Magnus Damm, linux-sh

Hi Valentine,

On Tuesday 24 September 2013 17:38:33 Valentine Barshak wrote:
> The following patches add ADV7611/ADV7612 HDMI receiver I2C driver
> and add RCAR H2 SOC support along with ADV761x output format support
> to rcar_vin soc_camera driver.
> 
> These changes are needed for SH-Mobile R8A7790 Lager board
> video input support.

Do you plan to submit a v2 ? I need the ADV761x driver pretty soon and I'd 
like to avoid submitting a competing patch :-)

> Valentine Barshak (3):
>   media: i2c: Add ADV761X support
>   media: rcar_vin: Add preliminary r8a7790 H2 support
>   media: rcar_vin: Add RGB888_1X24 input format support
> 
>  drivers/media/i2c/Kconfig                    |   11 +
>  drivers/media/i2c/Makefile                   |    1 +
>  drivers/media/i2c/adv761x.c                  | 1060 +++++++++++++++++++++++
>  drivers/media/platform/soc_camera/rcar_vin.c |   17 +-
>  include/media/adv761x.h                      |   28 +
>  5 files changed, 1114 insertions(+), 3 deletions(-)
>  create mode 100644 drivers/media/i2c/adv761x.c
>  create mode 100644 include/media/adv761x.h
-- 
Regards,

Laurent Pinchart


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 0/3] media: Add SH-Mobile RCAR-H2 Lager board support
  2013-11-11 23:42   ` Laurent Pinchart
@ 2013-11-12 20:34     ` Valentine
  -1 siblings, 0 replies; 12+ messages in thread
From: Valentine @ 2013-11-12 20:34 UTC (permalink / raw)
  To: Laurent Pinchart
  Cc: linux-media, Simon Horman, Mauro Carvalho Chehab,
	Guennadi Liakhovetski, Hans Verkuil, Magnus Damm, linux-sh

On 11/12/2013 03:42 AM, Laurent Pinchart wrote:
> Hi Valentine,
>
> On Tuesday 24 September 2013 17:38:33 Valentine Barshak wrote:
>> The following patches add ADV7611/ADV7612 HDMI receiver I2C driver
>> and add RCAR H2 SOC support along with ADV761x output format support
>> to rcar_vin soc_camera driver.
>>
>> These changes are needed for SH-Mobile R8A7790 Lager board
>> video input support.
>
> Do you plan to submit a v2 ? I need the ADV761x driver pretty soon and I'd
> like to avoid submitting a competing patch :-)

Yes, I plan to submit v2 when it's ready.
Currently it's a work in progress.

Do you already have anything to submit for the ADV761x support?

Thanks,
Val.

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 0/3] media: Add SH-Mobile RCAR-H2 Lager board support
@ 2013-11-12 20:34     ` Valentine
  0 siblings, 0 replies; 12+ messages in thread
From: Valentine @ 2013-11-12 20:34 UTC (permalink / raw)
  To: Laurent Pinchart
  Cc: linux-media, Simon Horman, Mauro Carvalho Chehab,
	Guennadi Liakhovetski, Hans Verkuil, Magnus Damm, linux-sh

On 11/12/2013 03:42 AM, Laurent Pinchart wrote:
> Hi Valentine,
>
> On Tuesday 24 September 2013 17:38:33 Valentine Barshak wrote:
>> The following patches add ADV7611/ADV7612 HDMI receiver I2C driver
>> and add RCAR H2 SOC support along with ADV761x output format support
>> to rcar_vin soc_camera driver.
>>
>> These changes are needed for SH-Mobile R8A7790 Lager board
>> video input support.
>
> Do you plan to submit a v2 ? I need the ADV761x driver pretty soon and I'd
> like to avoid submitting a competing patch :-)

Yes, I plan to submit v2 when it's ready.
Currently it's a work in progress.

Do you already have anything to submit for the ADV761x support?

Thanks,
Val.

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 0/3] media: Add SH-Mobile RCAR-H2 Lager board support
  2013-11-12 20:34     ` Valentine
@ 2013-11-12 20:40       ` Laurent Pinchart
  -1 siblings, 0 replies; 12+ messages in thread
From: Laurent Pinchart @ 2013-11-12 20:40 UTC (permalink / raw)
  To: Valentine
  Cc: linux-media, Simon Horman, Mauro Carvalho Chehab,
	Guennadi Liakhovetski, Hans Verkuil, Magnus Damm, linux-sh

Hi Valentine,

On Wednesday 13 November 2013 00:34:04 Valentine wrote:
> On 11/12/2013 03:42 AM, Laurent Pinchart wrote:
> > On Tuesday 24 September 2013 17:38:33 Valentine Barshak wrote:
> >> The following patches add ADV7611/ADV7612 HDMI receiver I2C driver
> >> and add RCAR H2 SOC support along with ADV761x output format support
> >> to rcar_vin soc_camera driver.
> >> 
> >> These changes are needed for SH-Mobile R8A7790 Lager board
> >> video input support.
> > 
> > Do you plan to submit a v2 ? I need the ADV761x driver pretty soon and I'd
> > like to avoid submitting a competing patch :-)
> 
> Yes, I plan to submit v2 when it's ready.
> Currently it's a work in progress.
> 
> Do you already have anything to submit for the ADV761x support?

Not yet, but I will likely work on it in the next few days.

-- 
Regards,

Laurent Pinchart


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 0/3] media: Add SH-Mobile RCAR-H2 Lager board support
@ 2013-11-12 20:40       ` Laurent Pinchart
  0 siblings, 0 replies; 12+ messages in thread
From: Laurent Pinchart @ 2013-11-12 20:40 UTC (permalink / raw)
  To: Valentine
  Cc: linux-media, Simon Horman, Mauro Carvalho Chehab,
	Guennadi Liakhovetski, Hans Verkuil, Magnus Damm, linux-sh

Hi Valentine,

On Wednesday 13 November 2013 00:34:04 Valentine wrote:
> On 11/12/2013 03:42 AM, Laurent Pinchart wrote:
> > On Tuesday 24 September 2013 17:38:33 Valentine Barshak wrote:
> >> The following patches add ADV7611/ADV7612 HDMI receiver I2C driver
> >> and add RCAR H2 SOC support along with ADV761x output format support
> >> to rcar_vin soc_camera driver.
> >> 
> >> These changes are needed for SH-Mobile R8A7790 Lager board
> >> video input support.
> > 
> > Do you plan to submit a v2 ? I need the ADV761x driver pretty soon and I'd
> > like to avoid submitting a competing patch :-)
> 
> Yes, I plan to submit v2 when it's ready.
> Currently it's a work in progress.
> 
> Do you already have anything to submit for the ADV761x support?

Not yet, but I will likely work on it in the next few days.

-- 
Regards,

Laurent Pinchart


^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2013-11-12 20:40 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-09-24 13:38 [PATCH 0/3] media: Add SH-Mobile RCAR-H2 Lager board support Valentine Barshak
2013-09-24 16:14 ` Guennadi Liakhovetski
2013-10-04 10:13   ` Hans Verkuil
2013-10-04 10:13     ` Hans Verkuil
2013-10-04 14:19     ` Valentine
2013-10-04 14:19       ` Valentine
2013-11-11 23:42 ` Laurent Pinchart
2013-11-11 23:42   ` Laurent Pinchart
2013-11-12 20:34   ` Valentine
2013-11-12 20:34     ` Valentine
2013-11-12 20:40     ` Laurent Pinchart
2013-11-12 20:40       ` Laurent Pinchart

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.