From mboxrd@z Thu Jan 1 00:00:00 1970 From: Vandana Kannan Subject: Re: [PATCH 2/3] drm/edid: Check for user aspect ratio input Date: Fri, 23 May 2014 16:14:15 +0530 Message-ID: <537F267F.4070303@intel.com> References: <1400757650-28636-1-git-send-email-vandana.kannan@intel.com> <1400757650-28636-2-git-send-email-vandana.kannan@intel.com> <20140522114223.GB31378@ulmo> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <20140522114223.GB31378@ulmo> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" To: Thierry Reding Cc: "intel-gfx@lists.freedesktop.org" , "dri-devel@lists.freedesktop.org" List-Id: intel-gfx@lists.freedesktop.org On May-22-2014 5:12 PM, Thierry Reding wrote: > On Thu, May 22, 2014 at 04:50:49PM +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. >> >> Signed-off-by: Vandana Kannan >> Cc: dri-devel@lists.freedesktop.org >> --- >> 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..05db619 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 CEA mode list or >> + * user input >> + */ > > This comment is mangled, it should look like this: > > /* > * Populate... > */ > > And perhaps to clarify that user input takes precedence over CEA you > could list it first in the comment, like so for example: > > /* > * Populate picture aspect ratio from either user input (if specified) > * or from the CEA mode. > */ > Sure, I will modify this comment > Also can you please resend patch 3/3 to dri-devel@lists.freedesktop.org > as well so we can see how this is used in a driver? > > Thierry > I have resent this patch including dri-devel@lists.freedesktop.org Thanks, Vandana