lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:	Fri, 12 Apr 2013 16:50:25 +0530
From:	Sekhar Nori <nsekhar@...com>
To:	Prabhakar lad <prabhakar.csengg@...il.com>
CC:	DLOS <davinci-linux-open-source@...ux.davincidsp.com>,
	LMML <linux-kernel@...r.kernel.org>,
	LAK <linux-arm-kernel@...ts.infradead.org>,
	Hans Verkuil <hans.verkuil@...co.com>,
	LKML <inux-kernel@...r.kernel.org>
Subject: Re: [PATCH] ARM: daVinci: dm644x/dm355/dm365: replace V4L2_STD_525_60/625_50
 with V4L2_STD_NTSC/PAL



On 4/12/2013 4:35 PM, Prabhakar lad wrote:
> From: Lad, Prabhakar <prabhakar.csengg@...il.com>
> 
> This patch replaces V4L2_STD_525_60/625_50 with V4L2_STD_NTSC/PAL
> respectively as this are the proper video standards.
> 
> Signed-off-by: Lad, Prabhakar <prabhakar.csengg@...il.com>
> Reported-by: Hans Verkuil <hans.verkuil@...co.com>
> Cc: Sekhar Nori <nsekhar@...com>

I assume you have tested it, some testing information would have been
good. The patch as such is OK with me. I assume this will go through
media tree for sake of dependencies.

Acked-by: Sekhar Nori <nsekhar@...com>

Thanks,
Sekhar

> ---
>  Note:- This patch is on top of following pull
>   https://patchwork.linuxtv.org/patch/17888/
> 
>  arch/arm/mach-davinci/board-dm355-evm.c  |    4 ++--
>  arch/arm/mach-davinci/board-dm365-evm.c  |    4 ++--
>  arch/arm/mach-davinci/board-dm644x-evm.c |    4 ++--
>  3 files changed, 6 insertions(+), 6 deletions(-)
> 
> diff --git a/arch/arm/mach-davinci/board-dm355-evm.c b/arch/arm/mach-davinci/board-dm355-evm.c
> index 1043506..886481c 100644
> --- a/arch/arm/mach-davinci/board-dm355-evm.c
> +++ b/arch/arm/mach-davinci/board-dm355-evm.c
> @@ -247,7 +247,7 @@ static struct vpbe_enc_mode_info dm355evm_enc_preset_timing[] = {
>  	{
>  		.name		= "ntsc",
>  		.timings_type	= VPBE_ENC_STD,
> -		.std_id		= V4L2_STD_525_60,
> +		.std_id		= V4L2_STD_NTSC,
>  		.interlaced	= 1,
>  		.xres		= 720,
>  		.yres		= 480,
> @@ -259,7 +259,7 @@ static struct vpbe_enc_mode_info dm355evm_enc_preset_timing[] = {
>  	{
>  		.name		= "pal",
>  		.timings_type	= VPBE_ENC_STD,
> -		.std_id		= V4L2_STD_625_50,
> +		.std_id		= V4L2_STD_PAL,
>  		.interlaced	= 1,
>  		.xres		= 720,
>  		.yres		= 576,
> diff --git a/arch/arm/mach-davinci/board-dm365-evm.c b/arch/arm/mach-davinci/board-dm365-evm.c
> index 0518ce5..2a66743 100644
> --- a/arch/arm/mach-davinci/board-dm365-evm.c
> +++ b/arch/arm/mach-davinci/board-dm365-evm.c
> @@ -381,7 +381,7 @@ static struct vpbe_enc_mode_info dm365evm_enc_std_timing[] = {
>  	{
>  		.name		= "ntsc",
>  		.timings_type	= VPBE_ENC_STD,
> -		.std_id		= V4L2_STD_525_60,
> +		.std_id		= V4L2_STD_NTSC,
>  		.interlaced	= 1,
>  		.xres		= 720,
>  		.yres		= 480,
> @@ -393,7 +393,7 @@ static struct vpbe_enc_mode_info dm365evm_enc_std_timing[] = {
>  	{
>  		.name		= "pal",
>  		.timings_type	= VPBE_ENC_STD,
> -		.std_id		= V4L2_STD_625_50,
> +		.std_id		= V4L2_STD_PAL,
>  		.interlaced	= 1,
>  		.xres		= 720,
>  		.yres		= 576,
> diff --git a/arch/arm/mach-davinci/board-dm644x-evm.c b/arch/arm/mach-davinci/board-dm644x-evm.c
> index a021800..745280d 100644
> --- a/arch/arm/mach-davinci/board-dm644x-evm.c
> +++ b/arch/arm/mach-davinci/board-dm644x-evm.c
> @@ -622,7 +622,7 @@ static struct vpbe_enc_mode_info dm644xevm_enc_std_timing[] = {
>  	{
>  		.name		= "ntsc",
>  		.timings_type	= VPBE_ENC_STD,
> -		.std_id		= V4L2_STD_525_60,
> +		.std_id		= V4L2_STD_NTSC,
>  		.interlaced	= 1,
>  		.xres		= 720,
>  		.yres		= 480,
> @@ -634,7 +634,7 @@ static struct vpbe_enc_mode_info dm644xevm_enc_std_timing[] = {
>  	{
>  		.name		= "pal",
>  		.timings_type	= VPBE_ENC_STD,
> -		.std_id		= V4L2_STD_625_50,
> +		.std_id		= V4L2_STD_PAL,
>  		.interlaced	= 1,
>  		.xres		= 720,
>  		.yres		= 576,
> 
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ