mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Hamza Mahfooz <hamza.mahfooz@amd.com>
To: Tom Rix <trix@redhat.com>,
	harry.wentland@amd.com, sunpeng.li@amd.com,
	Rodrigo.Siqueira@amd.com, alexander.deucher@amd.com,
	christian.koenig@amd.com, Xinhui.Pan@amd.com, airlied@gmail.com,
	daniel@ffwll.ch, nathan@kernel.org, ndesaulniers@google.com,
	aric.cyr@amd.com, HaoPing.Liu@amd.com, Anthony.Koo@amd.com,
	hanghong.ma@amd.com, Angus.Wang@amd.com, Dillon.Varone@amd.com
Cc: llvm@lists.linux.dev, dri-devel@lists.freedesktop.org,
	amd-gfx@lists.freedesktop.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] drm/amd/display: remove unused average_render_time_in_us and i variables
Date: Fri, 31 Mar 2023 11:01:23 -0400	[thread overview]
Message-ID: <fbf84e6b-438c-0486-1ee3-7bb1171b2c0a@amd.com> (raw)
In-Reply-To: <20230331001032.1846456-1-trix@redhat.com>

On 3/30/23 20:10, Tom Rix wrote:
> clang with W=1 reports
> drivers/gpu/drm/amd/amdgpu/../display/modules/freesync/freesync.c:1132:15: error: variable
>    'average_render_time_in_us' set but not used [-Werror,-Wunused-but-set-variable]
>          unsigned int average_render_time_in_us = 0;
>                       ^
> This variable is not used so remove it, which caused i to be unused so remove that as well.
> 
> Signed-off-by: Tom Rix <trix@redhat.com>

Applied, thanks!

> ---
>   .../drm/amd/display/modules/freesync/freesync.c    | 14 --------------
>   1 file changed, 14 deletions(-)
> 
> diff --git a/drivers/gpu/drm/amd/display/modules/freesync/freesync.c b/drivers/gpu/drm/amd/display/modules/freesync/freesync.c
> index 315da61ee897..5c41a4751db4 100644
> --- a/drivers/gpu/drm/amd/display/modules/freesync/freesync.c
> +++ b/drivers/gpu/drm/amd/display/modules/freesync/freesync.c
> @@ -1129,7 +1129,6 @@ void mod_freesync_handle_preflip(struct mod_freesync *mod_freesync,
>   {
>   	struct core_freesync *core_freesync = NULL;
>   	unsigned int last_render_time_in_us = 0;
> -	unsigned int average_render_time_in_us = 0;
>   
>   	if (mod_freesync == NULL)
>   		return;
> @@ -1138,7 +1137,6 @@ void mod_freesync_handle_preflip(struct mod_freesync *mod_freesync,
>   
>   	if (in_out_vrr->supported &&
>   			in_out_vrr->state == VRR_STATE_ACTIVE_VARIABLE) {
> -		unsigned int i = 0;
>   		unsigned int oldest_index = plane->time.index + 1;
>   
>   		if (oldest_index >= DC_PLANE_UPDATE_TIMES_MAX)
> @@ -1147,18 +1145,6 @@ void mod_freesync_handle_preflip(struct mod_freesync *mod_freesync,
>   		last_render_time_in_us = curr_time_stamp_in_us -
>   				plane->time.prev_update_time_in_us;
>   
> -		/* Sum off all entries except oldest one */
> -		for (i = 0; i < DC_PLANE_UPDATE_TIMES_MAX; i++) {
> -			average_render_time_in_us +=
> -					plane->time.time_elapsed_in_us[i];
> -		}
> -		average_render_time_in_us -=
> -				plane->time.time_elapsed_in_us[oldest_index];
> -
> -		/* Add render time for current flip */
> -		average_render_time_in_us += last_render_time_in_us;
> -		average_render_time_in_us /= DC_PLANE_UPDATE_TIMES_MAX;
> -
>   		if (in_out_vrr->btr.btr_enabled) {
>   			apply_below_the_range(core_freesync,
>   					stream,
-- 
Hamza


  reply	other threads:[~2023-03-31 15:00 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-31  0:10 Tom Rix
2023-03-31 15:01 ` Hamza Mahfooz [this message]
  -- strict thread matches above, loose matches on Subject: below --
2023-03-30 23:43 Tom Rix

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=fbf84e6b-438c-0486-1ee3-7bb1171b2c0a@amd.com \
    --to=hamza.mahfooz@amd.com \
    --cc=Angus.Wang@amd.com \
    --cc=Anthony.Koo@amd.com \
    --cc=Dillon.Varone@amd.com \
    --cc=HaoPing.Liu@amd.com \
    --cc=Rodrigo.Siqueira@amd.com \
    --cc=Xinhui.Pan@amd.com \
    --cc=airlied@gmail.com \
    --cc=alexander.deucher@amd.com \
    --cc=amd-gfx@lists.freedesktop.org \
    --cc=aric.cyr@amd.com \
    --cc=christian.koenig@amd.com \
    --cc=daniel@ffwll.ch \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=hanghong.ma@amd.com \
    --cc=harry.wentland@amd.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=llvm@lists.linux.dev \
    --cc=nathan@kernel.org \
    --cc=ndesaulniers@google.com \
    --cc=sunpeng.li@amd.com \
    --cc=trix@redhat.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

all inboxes | Powered by JetHome®