mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-05-24 10:39:52 +00:00
drm/amd/display: dc/dce60: set max_cursor_size to 64
[Why] Issue in the Mouse cursor size in Linux Desktop Environments [How] In DCE6 dc->caps.max_cursor_size need to be set as 64 instead of 128 Reviewed-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Mauro Rossi <issor.oruam@gmail.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
3ecb3b794e
commit
f17f90f4fe
1 changed files with 3 additions and 3 deletions
|
@ -970,7 +970,7 @@ static bool dce60_construct(
|
|||
pool->base.timing_generator_count = res_cap.num_timing_generator;
|
||||
dc->caps.max_downscale_ratio = 200;
|
||||
dc->caps.i2c_speed_in_khz = 40;
|
||||
dc->caps.max_cursor_size = 128;
|
||||
dc->caps.max_cursor_size = 64;
|
||||
dc->caps.dual_link_dvi = true;
|
||||
dc->caps.extended_aux_timeout_support = false;
|
||||
|
||||
|
@ -1164,7 +1164,7 @@ static bool dce61_construct(
|
|||
pool->base.timing_generator_count = res_cap_61.num_timing_generator;
|
||||
dc->caps.max_downscale_ratio = 200;
|
||||
dc->caps.i2c_speed_in_khz = 40;
|
||||
dc->caps.max_cursor_size = 128;
|
||||
dc->caps.max_cursor_size = 64;
|
||||
dc->caps.is_apu = true;
|
||||
|
||||
/*************************************************
|
||||
|
@ -1361,7 +1361,7 @@ static bool dce64_construct(
|
|||
pool->base.timing_generator_count = res_cap_64.num_timing_generator;
|
||||
dc->caps.max_downscale_ratio = 200;
|
||||
dc->caps.i2c_speed_in_khz = 40;
|
||||
dc->caps.max_cursor_size = 128;
|
||||
dc->caps.max_cursor_size = 64;
|
||||
dc->caps.is_apu = true;
|
||||
|
||||
/*************************************************
|
||||
|
|
Loading…
Add table
Reference in a new issue