diff options
author | Logush Oliver <[email protected]> | 2021-06-08 15:27:24 -0400 |
---|---|---|
committer | Alex Deucher <[email protected]> | 2021-06-21 17:45:15 -0400 |
commit | eeb90e26ed05dd44553d557057bf35f08f853af8 (patch) | |
tree | 8918d8966e74ff681a024305c1a6bb1bbd112d08 | |
parent | 452c76dfd24f799677d7ea4735daf89f479128f2 (diff) |
drm/amd/display: Fix edp_bootup_bl_level initialization issue
[why]
Updating the file to fix the missing line
Signed-off-by: Logush Oliver <[email protected]>
Reviewed-by: Charlene Liu <[email protected]>
Acked-by: Bindu Ramamurthy <[email protected]>
Tested-by: Daniel Wheeler <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
-rw-r--r-- | drivers/gpu/drm/amd/display/dc/bios/bios_parser2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/bios/bios_parser2.c b/drivers/gpu/drm/amd/display/dc/bios/bios_parser2.c index 7d1c1b76d8d0..840d7aca17cf 100644 --- a/drivers/gpu/drm/amd/display/dc/bios/bios_parser2.c +++ b/drivers/gpu/drm/amd/display/dc/bios/bios_parser2.c @@ -2140,7 +2140,7 @@ static enum bp_result get_integrated_info_v2_1( info_v2_1->edp1_info.edp_pwr_down_bloff_to_vary_bloff; info->edp1_info.edp_panel_bpc = info_v2_1->edp1_info.edp_panel_bpc; - info->edp1_info.edp_bootup_bl_level = + info->edp1_info.edp_bootup_bl_level = info_v2_1->edp1_info.edp_bootup_bl_level; info->edp2_info.edp_backlight_pwm_hz = le16_to_cpu(info_v2_1->edp2_info.edp_backlight_pwm_hz); |