drm/amd/display: Fix structure initialization of hdmi_info_packet
Signed-off-by: Anthony Koo <Anthony.Koo@amd.com> Reviewed-by: Anthony Koo <Anthony.Koo@amd.com> Reviewed-by: Aric Cyr <Aric.Cyr@amd.com> Acked-by: Harry Wentland <harry.wentland@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
28177772cb
commit
754e367320
1 changed files with 3 additions and 1 deletions
|
|
@ -1853,11 +1853,13 @@ static void set_avi_info_frame(
|
|||
unsigned int cn0_cn1_value = 0;
|
||||
uint8_t *check_sum = NULL;
|
||||
uint8_t byte_index = 0;
|
||||
union hdmi_info_packet hdmi_info = {0};
|
||||
union hdmi_info_packet hdmi_info;
|
||||
union display_content_support support = {0};
|
||||
unsigned int vic = pipe_ctx->stream->timing.vic;
|
||||
enum dc_timing_3d_format format;
|
||||
|
||||
memset(&hdmi_info, 0, sizeof(union hdmi_info_packet));
|
||||
|
||||
color_space = pipe_ctx->stream->output_color_space;
|
||||
if (color_space == COLOR_SPACE_UNKNOWN)
|
||||
color_space = (stream->timing.pixel_encoding == PIXEL_ENCODING_RGB) ?
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue