drm/amd/display: Fix wrong index bug in set_avi_info_frame

Signed-off-by: Harry Wentland <harry.wentland@amd.com>
Acked-by: Harry Wentland <Harry.Wentland@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
Harry Wentland 2017-01-04 18:54:29 -05:00 committed by Alex Deucher
parent e5cf325b0c
commit e66e4d6428

View File

@ -1490,9 +1490,10 @@ static void set_avi_info_frame(
info_packet->hb2 =
info_frame.avi_info_packet.info_packet_hdmi.packet_raw_data.hb2;
for (byte_index = 0; byte_index < sizeof(info_packet->sb); byte_index++)
for (byte_index = 0; byte_index < sizeof(info_frame.avi_info_packet.
info_packet_hdmi.packet_raw_data.sb); byte_index++)
info_packet->sb[byte_index] = info_frame.avi_info_packet.
info_packet_hdmi.packet_raw_data.sb[byte_index];
info_packet_hdmi.packet_raw_data.sb[byte_index];
info_packet->valid = true;
}