mirror of
https://github.com/torvalds/linux.git
synced 2026-05-26 08:02:27 +02:00
drm/amdgpu: fix duplicated value setting in dce100_resource_construct()
i2c_speed_in_khz was set twice with the same values. Looking at other DCE versions, we probably wanted to set the value for i2c_speed_in_khz_hdcp. Signed-off-by: Alexandre Demers <alexandre.f.demers@gmail.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
5e272fb5ec
commit
f82e7cf5f5
|
|
@ -1069,7 +1069,7 @@ static bool dce100_resource_construct(
|
|||
pool->base.timing_generator_count = pool->base.res_cap->num_timing_generator;
|
||||
dc->caps.max_downscale_ratio = 200;
|
||||
dc->caps.i2c_speed_in_khz = 40;
|
||||
dc->caps.i2c_speed_in_khz = 40;
|
||||
dc->caps.i2c_speed_in_khz_hdcp = 40;
|
||||
dc->caps.max_cursor_size = 128;
|
||||
dc->caps.min_horizontal_blanking_period = 80;
|
||||
dc->caps.dual_link_dvi = true;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user