drm/amd/display: remove unused variables dispclk_delay_subtotal and dout
authorTom Rix <trix@redhat.com>
Thu, 20 Apr 2023 18:07:05 +0000 (14:07 -0400)
committerAlex Deucher <alexander.deucher@amd.com>
Fri, 9 Jun 2023 13:20:08 +0000 (09:20 -0400)
commite94c25567c8519b770985cc86b652b06dce807d2
tree526f687c707752c397fa7c6cc7e59f853c076797
parentb91075866e58e6b073689958f246834ad0b2c79c
drm/amd/display: remove unused variables dispclk_delay_subtotal and dout

clang with W=1 reports
drivers/gpu/drm/amd/amdgpu/../display/dc/dml/dcn314/display_rq_dlg_calc_314.c:1003:15:
  error: variable 'dispclk_delay_subtotal' set but not used [-Werror,-Wunused-but-set-variable]
        unsigned int dispclk_delay_subtotal;
                     ^
This variable is not used, so remove it.
Which made dout unused, so also remove.

Signed-off-by: Tom Rix <trix@redhat.com>
Signed-off-by: Hamza Mahfooz <hamza.mahfooz@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/dc/dml/dcn314/display_rq_dlg_calc_314.c