mirror of
https://github.com/torvalds/linux.git
synced 2026-05-26 08:02:27 +02:00
drm/amd/display: remove extraneous ; after statements
There are a couple of 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:
parent
30f7f53a5b
commit
9bbb556868
|
|
@ -3894,8 +3894,8 @@ static void CalculateSwathAndDETConfiguration(struct dml2_core_internal_scratch
|
|||
p->SwathHeightC[k] = MaximumSwathHeightC[k] / 2;
|
||||
RoundedUpSwathSizeBytesY[k] = p->full_swath_bytes_l[k] / 2;
|
||||
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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user