drm/amd/display: remove unused variable oldest_index
authorTom Rix <trix@redhat.com>
Fri, 14 Apr 2023 15:08:30 +0000 (11:08 -0400)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 18 Apr 2023 20:28:54 +0000 (16:28 -0400)
cpp_check reports
drivers/gpu/drm/amd/display/modules/freesync/freesync.c:1143:17: style: Variable
  'oldest_index' is assigned a value that is never used. [unreadVariable]
   oldest_index = 0;
                ^

This variable is not used so remove.

Signed-off-by: Tom Rix <trix@redhat.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/modules/freesync/freesync.c

index 5c41a47..5798c0e 100644 (file)
@@ -1137,10 +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 oldest_index = plane->time.index + 1;
-
-               if (oldest_index >= DC_PLANE_UPDATE_TIMES_MAX)
-                       oldest_index = 0;
 
                last_render_time_in_us = curr_time_stamp_in_us -
                                plane->time.prev_update_time_in_us;