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

Configure Feed

Select the types of activity you want to include in your feed.

drm/amd/display: Reuse the modified power sequence

[why & how]
Need to update the function pointers that
perform the power up and down sequence
to reuse the modified sequence as a requirement.

Reviewed-by: Nicholas Kazlauskas <nicholas.kazlauskas@amd.com>
Acked-by: Aurabindo Pillai <aurabindo.pillai@amd.com>
Signed-off-by: Sung Joon Kim <sungjoon.kim@amd.com>
Tested-by: Daniel Wheeler <daniel.wheeler@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>

authored by

Sung Joon Kim and committed by
Alex Deucher
d0f2181d c83ad4c3

+4 -4
+4 -4
drivers/gpu/drm/amd/display/dc/hwss/dcn351/dcn351_init.c
··· 116 116 .update_visual_confirm_color = dcn10_update_visual_confirm_color, 117 117 .apply_idle_power_optimizations = dcn35_apply_idle_power_optimizations, 118 118 .update_dsc_pg = dcn32_update_dsc_pg, 119 - .calc_blocks_to_gate = dcn35_calc_blocks_to_gate, 120 - .calc_blocks_to_ungate = dcn35_calc_blocks_to_ungate, 121 - .hw_block_power_up = dcn35_hw_block_power_up, 122 - .hw_block_power_down = dcn35_hw_block_power_down, 119 + .calc_blocks_to_gate = dcn351_calc_blocks_to_gate, 120 + .calc_blocks_to_ungate = dcn351_calc_blocks_to_ungate, 121 + .hw_block_power_up = dcn351_hw_block_power_up, 122 + .hw_block_power_down = dcn351_hw_block_power_down, 123 123 .root_clock_control = dcn35_root_clock_control, 124 124 }; 125 125