Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drm/amd/display: Remove wrong signal from vrr calculation

In some of the merge conflict fixes, one '+' was accidentally left at
the beginning of the line. Fortunately, this did not cause any major
issues since it acted as a number signal. This commit addresses this
issue by removing the extra '+'.

Acked-by: Wayne Lin <wayne.lin@amd.com>
Signed-off-by: Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
Tested-by: Daniel Wheeler <daniel.wheeler@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>

authored by

Rodrigo Siqueira and committed by
Alex Deucher
bcebe44f 55fdfddd

+1 -1
+1 -1
drivers/gpu/drm/amd/display/modules/freesync/freesync.c
··· 1057 1057 in_out_vrr->fixed_refresh_in_uhz = 0; 1058 1058 1059 1059 refresh_range = div_u64(in_out_vrr->max_refresh_in_uhz + 500000, 1000000) - 1060 - + div_u64(in_out_vrr->min_refresh_in_uhz + 500000, 1000000); 1060 + div_u64(in_out_vrr->min_refresh_in_uhz + 500000, 1000000); 1061 1061 1062 1062 in_out_vrr->supported = true; 1063 1063 }