Commit 7b7d6865 authored by Tom St Denis's avatar Tom St Denis Committed by Alex Deucher

drm/amd/display: Make dce120_tg_is_blanked() more legible

Signed-off-by: default avatarTom St Denis <tom.stdenis@amd.com>
Reviewed-by: default avatarHarry Wentland <Harry.Wentland@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 78178dea
...@@ -746,15 +746,14 @@ bool dce120_tg_is_blanked(struct timing_generator *tg) ...@@ -746,15 +746,14 @@ bool dce120_tg_is_blanked(struct timing_generator *tg)
mmCRTC0_CRTC_BLANK_CONTROL, mmCRTC0_CRTC_BLANK_CONTROL,
tg110->offsets.crtc); tg110->offsets.crtc);
if ( if (get_reg_field_value(
get_reg_field_value( value,
value, CRTC0_CRTC_BLANK_CONTROL,
CRTC0_CRTC_BLANK_CONTROL, CRTC_BLANK_DATA_EN) == 1 &&
CRTC_BLANK_DATA_EN) == 1 && get_reg_field_value(
get_reg_field_value( value,
value, CRTC0_CRTC_BLANK_CONTROL,
CRTC0_CRTC_BLANK_CONTROL, CRTC_CURRENT_BLANK_STATE) == 1)
CRTC_CURRENT_BLANK_STATE) == 1)
return true; return true;
return false; return false;
......
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