mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-23 05:56:14 -04:00
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>
This commit is contained in:
committed by
Alex Deucher
parent
55fdfddddb
commit
bcebe44f6b
@@ -1057,7 +1057,7 @@ void mod_freesync_build_vrr_params(struct mod_freesync *mod_freesync,
|
||||
in_out_vrr->fixed_refresh_in_uhz = 0;
|
||||
|
||||
refresh_range = div_u64(in_out_vrr->max_refresh_in_uhz + 500000, 1000000) -
|
||||
+ div_u64(in_out_vrr->min_refresh_in_uhz + 500000, 1000000);
|
||||
div_u64(in_out_vrr->min_refresh_in_uhz + 500000, 1000000);
|
||||
|
||||
in_out_vrr->supported = true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user