Commit c385d416 authored by Colin Ian King's avatar Colin Ian King Committed by Alex Deucher

drm/amd/display: remove variable active_disp

The variable active_disp is being initialized with a value that
is never read, it is being re-assigned immediately afterwards.
Clean up the code by removing the need for variable active_disp.

Addresses-Coverity: ("Unused value")
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 7bee75a2
......@@ -82,9 +82,6 @@ void bios_set_scratch_critical_state(
uint32_t bios_get_vga_enabled_displays(
struct dc_bios *bios)
{
uint32_t active_disp = 1;
active_disp = REG_READ(BIOS_SCRATCH_3) & 0XFFFF;
return active_disp;
return REG_READ(BIOS_SCRATCH_3) & 0XFFFF;
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment