mirror of
https://github.com/torvalds/linux.git
synced 2026-04-26 10:32:25 -04:00
drm/amd/display: remove extraneous ; after statements
There are a several statements with two following semicolons, replace these with just one semicolon. Signed-off-by: Colin Ian King <colin.i.king@gmail.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
committed by
Alex Deucher
parent
0cee47cde4
commit
7b3a4e1d55
@@ -7218,7 +7218,7 @@ static bool dml_core_mode_support(struct dml2_core_calcs_mode_support_ex *in_out
|
||||
#if defined(DV_BUILD)
|
||||
// Assume a memory config setting of 3 in 420 mode or get a new ip parameter that reflects the programming.
|
||||
if (mode_lib->ms.BytePerPixelC[k] != 0.0 && display_cfg->plane_descriptors[k].pixel_format != dml2_rgbe_alpha) {
|
||||
lb_buffer_size_bits_luma = 34620 * 57;;
|
||||
lb_buffer_size_bits_luma = 34620 * 57;
|
||||
lb_buffer_size_bits_chroma = 13560 * 57;
|
||||
}
|
||||
#endif
|
||||
|
||||
@@ -6464,8 +6464,8 @@ static void CalculateSwathAndDETConfiguration(struct dml2_core_internal_scratch
|
||||
p->SwathHeightC[k] = l->MaximumSwathHeightC[k] / 2;
|
||||
l->RoundedUpSwathSizeBytesY[k] = p->full_swath_bytes_l[k] / 2;
|
||||
l->RoundedUpSwathSizeBytesC[k] = p->full_swath_bytes_c[k] / 2;
|
||||
p->request_size_bytes_luma[k] = ((p->BytePerPixY[k] == 2) == dml_is_vertical_rotation(p->display_cfg->plane_descriptors[k].composition.rotation_angle)) ? 128 : 64;;
|
||||
p->request_size_bytes_chroma[k] = ((p->BytePerPixC[k] == 2) == dml_is_vertical_rotation(p->display_cfg->plane_descriptors[k].composition.rotation_angle)) ? 128 : 64;;
|
||||
p->request_size_bytes_luma[k] = ((p->BytePerPixY[k] == 2) == dml_is_vertical_rotation(p->display_cfg->plane_descriptors[k].composition.rotation_angle)) ? 128 : 64;
|
||||
p->request_size_bytes_chroma[k] = ((p->BytePerPixC[k] == 2) == dml_is_vertical_rotation(p->display_cfg->plane_descriptors[k].composition.rotation_angle)) ? 128 : 64;
|
||||
}
|
||||
|
||||
if (p->SwathHeightC[k] == 0)
|
||||
|
||||
Reference in New Issue
Block a user