public inbox for intel-gfx@lists.freedesktop.org
 help / color / mirror / Atom feed
From: Thierry Reding <thierry.reding@gmail.com>
To: Vandana Kannan <vandana.kannan@intel.com>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>,
	intel-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org
Subject: Re: [PATCH v2 2/4] drm/edid: Check for user aspect ratio input
Date: Thu, 5 Jun 2014 08:33:32 +0200	[thread overview]
Message-ID: <20140605063331.GA30845@ulmo> (raw)
In-Reply-To: <1401098862-30278-1-git-send-email-vandana.kannan@intel.com>


[-- Attachment #1.1: Type: text/plain, Size: 1657 bytes --]

On Mon, May 26, 2014 at 03:37:42PM +0530, Vandana Kannan wrote:
> In case user has specified an input for aspect ratio through the property,
> then the user space value for PAR would take preference over the value from
> CEA mode list.
> 
> v2: Thierry's review comments.
> 	- Modified the comment "Populate..." as per review comments
> 
> Signed-off-by: Vandana Kannan <vandana.kannan@intel.com>
> Cc: Thierry Reding <thierry.reding@gmail.com>
> Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
> 
> ---
>  drivers/gpu/drm/drm_edid.c | 9 +++++++--
>  1 file changed, 7 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/gpu/drm/drm_edid.c b/drivers/gpu/drm/drm_edid.c
> index 7a4fd2e..2628dd1 100644
> --- a/drivers/gpu/drm/drm_edid.c
> +++ b/drivers/gpu/drm/drm_edid.c
> @@ -3657,8 +3657,13 @@ drm_hdmi_avi_infoframe_from_display_mode(struct hdmi_avi_infoframe *frame,
>  
>  	frame->picture_aspect = HDMI_PICTURE_ASPECT_NONE;
>  
> -	/* Populate picture aspect ratio from CEA mode list */
> -	if (frame->video_code > 0)
> +	/* Populate picture aspect ratio from either user input (if specified)
> +	 * or from the CEA mode list
> +	 */

Block comments should be of this form:

	/*
	 * Populate ...
	 * ... mode list.
	 */

> +	if (mode->picture_aspect_ratio == HDMI_PICTURE_ASPECT_4_3 ||
> +		mode->picture_aspect_ratio == HDMI_PICTURE_ASPECT_16_9)
> +		frame->picture_aspect = mode->picture_aspect_ratio;
> +	else if (frame->video_code > 0)
>  		frame->picture_aspect = drm_get_cea_aspect_ratio(
>  						frame->video_code);

With the above fixed, this is:

Reviewed-by: Thierry Reding <treding@nvidia.com>

[-- Attachment #1.2: Type: application/pgp-signature, Size: 836 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

  reply	other threads:[~2014-06-05  6:33 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-05-22 11:20 [PATCH 1/3] drm/crtc: Add property for aspect ratio Vandana Kannan
2014-05-22 11:20 ` [PATCH 2/3] drm/edid: Check for user aspect ratio input Vandana Kannan
2014-05-22 11:42   ` Thierry Reding
2014-05-23 10:44     ` Vandana Kannan
2014-05-26 10:07       ` [PATCH v2 2/4] " Vandana Kannan
2014-06-05  6:33         ` Thierry Reding [this message]
2014-06-05  9:15           ` [PATCH v3 " Vandana Kannan
2014-06-05  9:25             ` Thierry Reding
2014-05-22 11:20 ` [PATCH 3/3] drm/i915: Add aspect ratio property for HDMI Vandana Kannan
2014-05-23  2:29   ` Vandana Kannan
2014-05-26 10:11     ` [PATCH v2 3/4] " Vandana Kannan
2014-06-11  5:36       ` [PATCH v3 " Vandana Kannan
2014-05-22 11:38 ` [PATCH 1/3] drm/crtc: Add property for aspect ratio Thierry Reding
2014-05-23 10:41   ` Vandana Kannan
2014-05-22 12:16 ` [Intel-gfx] " Daniel Vetter
2014-05-23 10:48   ` Vandana Kannan
2014-05-26  5:30     ` [Intel-gfx] " Vandana Kannan
2014-05-26  7:54       ` Daniel Vetter
2014-05-26 10:04         ` [PATCH v2 1/4] " Vandana Kannan
2014-06-05  6:40           ` Thierry Reding
2014-06-05  9:10             ` [PATCH v3 " Vandana Kannan
2014-06-05  9:28               ` Thierry Reding
2014-06-10  8:30                 ` Vandana Kannan
2014-06-10 11:15                   ` Thierry Reding
2014-06-11  5:16                     ` [PATCH v4 " Vandana Kannan
2014-07-01  5:01                       ` Vandana Kannan
2014-07-14  6:51                       ` Thierry Reding
2014-07-15  6:48                         ` [Intel-gfx] " Daniel Vetter
2014-07-15 15:23                           ` Vandana Kannan
2014-07-09 21:16 ` [Intel-gfx] [PATCH 1/3] " Jesse Barnes

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20140605063331.GA30845@ulmo \
    --to=thierry.reding@gmail.com \
    --cc=daniel.vetter@ffwll.ch \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=vandana.kannan@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox