public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH RESEND] ARM: dm365: replace V4L2_OUT_CAP_CUSTOM_TIMINGS with V4L2_OUT_CAP_DV_TIMINGS
@ 2012-10-22 12:12 Prabhakar Lad
  2012-10-23  9:48 ` Sergei Shtylyov
  0 siblings, 1 reply; 3+ messages in thread
From: Prabhakar Lad @ 2012-10-22 12:12 UTC (permalink / raw)
  To: LAK; +Cc: Manjunath Hadli, Sekhar Nori, LMML, LKML, DLOS, Lad, Prabhakar

From: Lad, Prabhakar <prabhakar.lad@ti.com>

This patch replaces V4L2_OUT_CAP_CUSTOM_TIMINGS macro with
V4L2_OUT_CAP_DV_TIMINGS. As V4L2_OUT_CAP_CUSTOM_TIMINGS is being phased
out.

Signed-off-by: Lad, Prabhakar <prabhakar.lad@ti.com>
Signed-off-by: Manjunath Hadli <manjunath.hadli@ti.com>
Cc: Sekhar Nori <nsekhar@ti.com>
---
 Resending the patch since, it didn't reach the DLOS mailing list.

 This patch is based on the following patch series,
 ARM: davinci: dm365 EVM: add support for VPBE display
 (https://patchwork.kernel.org/patch/1295071/)

 arch/arm/mach-davinci/board-dm365-evm.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/arm/mach-davinci/board-dm365-evm.c b/arch/arm/mach-davinci/board-dm365-evm.c
index 2924d61..771abb5 100644
--- a/arch/arm/mach-davinci/board-dm365-evm.c
+++ b/arch/arm/mach-davinci/board-dm365-evm.c
@@ -514,7 +514,7 @@ static struct vpbe_output dm365evm_vpbe_outputs[] = {
 			.index		= 1,
 			.name		= "Component",
 			.type		= V4L2_OUTPUT_TYPE_ANALOG,
-			.capabilities	= V4L2_OUT_CAP_CUSTOM_TIMINGS,
+			.capabilities	=  V4L2_OUT_CAP_DV_TIMINGS,
 		},
 		.subdev_name	= VPBE_VENC_SUBDEV_NAME,
 		.default_mode	= "480p59_94",
-- 
1.7.4.1


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

* Re: [PATCH RESEND] ARM: dm365: replace V4L2_OUT_CAP_CUSTOM_TIMINGS with V4L2_OUT_CAP_DV_TIMINGS
  2012-10-22 12:12 [PATCH RESEND] ARM: dm365: replace V4L2_OUT_CAP_CUSTOM_TIMINGS with V4L2_OUT_CAP_DV_TIMINGS Prabhakar Lad
@ 2012-10-23  9:48 ` Sergei Shtylyov
  2012-10-23  9:56   ` Prabhakar Lad
  0 siblings, 1 reply; 3+ messages in thread
From: Sergei Shtylyov @ 2012-10-23  9:48 UTC (permalink / raw)
  To: Prabhakar Lad; +Cc: LAK, DLOS, LKML, LMML

Hello.

On 22-10-2012 16:12, Prabhakar Lad wrote:

> From: Lad, Prabhakar <prabhakar.lad@ti.com>

> This patch replaces V4L2_OUT_CAP_CUSTOM_TIMINGS macro with
> V4L2_OUT_CAP_DV_TIMINGS. As V4L2_OUT_CAP_CUSTOM_TIMINGS is being phased
> out.

> Signed-off-by: Lad, Prabhakar <prabhakar.lad@ti.com>
> Signed-off-by: Manjunath Hadli <manjunath.hadli@ti.com>
> Cc: Sekhar Nori <nsekhar@ti.com>
> ---
>   Resending the patch since, it didn't reach the DLOS mailing list.

>   This patch is based on the following patch series,
>   ARM: davinci: dm365 EVM: add support for VPBE display
>   (https://patchwork.kernel.org/patch/1295071/)

>   arch/arm/mach-davinci/board-dm365-evm.c |    2 +-
>   1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/arch/arm/mach-davinci/board-dm365-evm.c b/arch/arm/mach-davinci/board-dm365-evm.c
> index 2924d61..771abb5 100644
> --- a/arch/arm/mach-davinci/board-dm365-evm.c
> +++ b/arch/arm/mach-davinci/board-dm365-evm.c
> @@ -514,7 +514,7 @@ static struct vpbe_output dm365evm_vpbe_outputs[] = {
>   			.index		= 1,
>   			.name		= "Component",
>   			.type		= V4L2_OUTPUT_TYPE_ANALOG,
> -			.capabilities	= V4L2_OUT_CAP_CUSTOM_TIMINGS,
> +			.capabilities	=  V4L2_OUT_CAP_DV_TIMINGS,

    Why this extra space after '='?

WBR, Sergei


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

* Re: [PATCH RESEND] ARM: dm365: replace V4L2_OUT_CAP_CUSTOM_TIMINGS with V4L2_OUT_CAP_DV_TIMINGS
  2012-10-23  9:48 ` Sergei Shtylyov
@ 2012-10-23  9:56   ` Prabhakar Lad
  0 siblings, 0 replies; 3+ messages in thread
From: Prabhakar Lad @ 2012-10-23  9:56 UTC (permalink / raw)
  To: Sergei Shtylyov; +Cc: LAK, DLOS, LKML, LMML

Hi Sergei,

On Tue, Oct 23, 2012 at 3:18 PM, Sergei Shtylyov <sshtylyov@mvista.com> wrote:
> Hello.
>
>
> On 22-10-2012 16:12, Prabhakar Lad wrote:
>
>> From: Lad, Prabhakar <prabhakar.lad@ti.com>
>
>
>> This patch replaces V4L2_OUT_CAP_CUSTOM_TIMINGS macro with
>> V4L2_OUT_CAP_DV_TIMINGS. As V4L2_OUT_CAP_CUSTOM_TIMINGS is being phased
>> out.
>
>
>> Signed-off-by: Lad, Prabhakar <prabhakar.lad@ti.com>
>> Signed-off-by: Manjunath Hadli <manjunath.hadli@ti.com>
>> Cc: Sekhar Nori <nsekhar@ti.com>
>> ---
>>   Resending the patch since, it didn't reach the DLOS mailing list.
>
>
>>   This patch is based on the following patch series,
>>   ARM: davinci: dm365 EVM: add support for VPBE display
>>   (https://patchwork.kernel.org/patch/1295071/)
>
>
>>   arch/arm/mach-davinci/board-dm365-evm.c |    2 +-
>>   1 files changed, 1 insertions(+), 1 deletions(-)
>>
>> diff --git a/arch/arm/mach-davinci/board-dm365-evm.c
>> b/arch/arm/mach-davinci/board-dm365-evm.c
>> index 2924d61..771abb5 100644
>> --- a/arch/arm/mach-davinci/board-dm365-evm.c
>> +++ b/arch/arm/mach-davinci/board-dm365-evm.c
>> @@ -514,7 +514,7 @@ static struct vpbe_output dm365evm_vpbe_outputs[] = {
>>                         .index          = 1,
>>                         .name           = "Component",
>>                         .type           = V4L2_OUTPUT_TYPE_ANALOG,
>> -                       .capabilities   = V4L2_OUT_CAP_CUSTOM_TIMINGS,
>> +                       .capabilities   =  V4L2_OUT_CAP_DV_TIMINGS,
>
>
>    Why this extra space after '='?
>
My Bad, I'll post a v2 fixing it.

Regards,
--Prabhakar

> WBR, Sergei
>

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

end of thread, other threads:[~2012-10-23  9:57 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-22 12:12 [PATCH RESEND] ARM: dm365: replace V4L2_OUT_CAP_CUSTOM_TIMINGS with V4L2_OUT_CAP_DV_TIMINGS Prabhakar Lad
2012-10-23  9:48 ` Sergei Shtylyov
2012-10-23  9:56   ` Prabhakar Lad

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox