All of lore.kernel.org
 help / color / mirror / Atom feed
From: Harry Wentland <harry.wentland-5C7GfCeVMHo@public.gmane.org>
To: Rex Zhu <Rex.Zhu-5C7GfCeVMHo@public.gmane.org>,
	amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org
Cc: "Koo, Anthony" <Anthony.Koo-5C7GfCeVMHo@public.gmane.org>
Subject: Re: [PATCH v2] drm/amd/display: fix compiling error on 32-Bit Linux
Date: Tue, 17 Apr 2018 14:38:08 -0400	[thread overview]
Message-ID: <d3bedbd2-d6d4-738a-8f85-c723bce4c7e1@amd.com> (raw)
In-Reply-To: <1523958275-16794-1-git-send-email-Rex.Zhu-5C7GfCeVMHo@public.gmane.org>

On 2018-04-17 05:44 AM, Rex Zhu wrote:
> ERROR: "__udivdi3" [drivers/gpu/drm/amd/amdgpu/amdgpu.ko] undefined!
> 
> v2: remove temporary variable
> 
> Signed-off-by: Rex Zhu <Rex.Zhu@amd.com>

Thanks for the fix.

I just pushed a change by Anthony that removes that hunk of code completely, so this won't be needed anymore.

Harry

> ---
>  drivers/gpu/drm/amd/display/modules/freesync/freesync.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/amd/display/modules/freesync/freesync.c b/drivers/gpu/drm/amd/display/modules/freesync/freesync.c
> index 5e12e46..685f03d 100644
> --- a/drivers/gpu/drm/amd/display/modules/freesync/freesync.c
> +++ b/drivers/gpu/drm/amd/display/modules/freesync/freesync.c
> @@ -647,7 +647,7 @@ void mod_freesync_build_vrr_params(struct mod_freesync *mod_freesync,
>  	 * this should be allowed instead of blocking FreeSync.
>  	 */
>  	if ((min_refresh_in_uhz / 1000000) >
> -			((nominal_field_rate_in_uhz + 1000000 - 1) / 1000000))
> +		div_u64(nominal_field_rate_in_uhz + 1000000 - 1, 1000000))
>  		nominal_field_rate_in_range = false;
>  
>  	// Full range may be larger than current video timing, so cap at nominal
> 
_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

      parent reply	other threads:[~2018-04-17 18:38 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-04-17  9:44 [PATCH v2] drm/amd/display: fix compiling error on 32-Bit Linux Rex Zhu
     [not found] ` <1523958275-16794-1-git-send-email-Rex.Zhu-5C7GfCeVMHo@public.gmane.org>
2018-04-17 10:24   ` Christian König
2018-04-17 18:38   ` Harry Wentland [this message]

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=d3bedbd2-d6d4-738a-8f85-c723bce4c7e1@amd.com \
    --to=harry.wentland-5c7gfcevmho@public.gmane.org \
    --cc=Anthony.Koo-5C7GfCeVMHo@public.gmane.org \
    --cc=Rex.Zhu-5C7GfCeVMHo@public.gmane.org \
    --cc=amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org \
    /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 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.